Bootstrap Inputs

 

Input type of text and password are shown below.

 
 
 
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Bootstrap Input Example</title> <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script> <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script> </head> <body> <div class="container"> <h2>Inputs</h2> <form role="form"> <input type="text" class="form-control" id="usr" placeholder="Enter Username"></br> <input type="password" class="form-control" id="pwd" placeholder="Enter Password"> </form> </div> </body> </html>
Output