Bootstrap Forms
home
Run
screen_rotation
fullscreen
cloud_download
navigate_before
<html> <head> <title>Bootstrap Grid</title> <!-- Latest compiled and minified CSS --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css"> <!-- Optional theme --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css"> <!-- Latest compiled and minified JavaScript --> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script> </head> <body> <div class="container"> <div class="row" style="margin:50px;"> <div class="col-sm-12"> <form role="form" class="form-inline"> <div class="form-group"> <label for="username">Username</label> <input type="text" name= "username" class="form-control" id="uname" placeholder="Enter Username"> </div> <div class="form-group"> <label for="email">Email</label> <input type="password" name="password" class="form-control" id="password" placeholder="Enter Password"> </div> <div class="form-group"> <label for="Password">Submit </label> <button type="submit" class="btn btn-primary">Login</button> </div> </form> </div> </div> </body> </html>
<html> <head> <title>Bootstrap Grid</title> <!-- Latest compiled and minified CSS --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css"> <!-- Optional theme --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css"> <!-- Latest compiled and minified JavaScript --> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script> </head> <body> <div class="container"> <div class="row" style="margin:50px;"> <div class="col-sm-12"> <form role="form" class="form-inline"> <div class="form-group"> <label for="username">Username</label> <input type="text" name= "username" class="form-control" id="uname" placeholder="Enter Username"> </div> <div class="form-group"> <label for="email">Email</label> <input type="password" name="password" class="form-control" id="password" placeholder="Enter Password"> </div> <div class="form-group"> <label for="Password">Submit </label> <button type="submit" class="btn btn-primary">Login</button> </div> </form> </div> </div> </body> </html>
Copyrights@tutorialsplane.com