Advertisement
Guest User

Untitled

a guest
Jan 7th, 2015
1,477
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.02 KB | None | 0 0
  1. <div class="container">
  2.     <div class="row">
  3.         <div class="col-md-2">
  4.             <form class="form-horizontal" action='' method="POST">
  5.               <fieldset>
  6.                 <div id="legend">
  7.                   <legend class="">Login</legend>
  8.                 </div>
  9.                 <div class="form-group">
  10.                   <!-- Username -->
  11.                   <label c for="username">Username</label>
  12.                   <div class="controls">
  13.                     <input type="text" id="username" name="username" placeholder="" class="form-control input-xlarge ">
  14.                   </div>
  15.                 </div>
  16.                 <div class="form-group">
  17.                   <!-- Password-->
  18.                   <label for="password">Password</label>
  19.                   <div class="controls">
  20.                     <input type="password" id="password" name="password" placeholder="" class="form-control input-xlarge">
  21.                   </div>
  22.                 </div>
  23.                 <div class="form-group">
  24.                   <!-- Button -->
  25.                   <div class="controls">
  26.                     <button class="btn btn-success">Login</button>
  27.                   </div>
  28.                 </div>
  29.               </fieldset>
  30.             </form>
  31.         </div>
  32.     </div>
  33. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement