"Register Form"
Bootstrap 3.3.0 Snippet by thomh

<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <form class="form-horizontal"> <fieldset> <!-- Form Name --> <legend>Register</legend> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="Name">Name</label> <div class="col-md-2"> <input id="Name" name="Name" type="text" placeholder="Name" class="form-control input-md"> </div> </div> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="username">User Name</label> <div class="col-md-2"> <input id="username" name="username" type="text" placeholder="User Name" class="form-control input-md" required=""> </div> </div> <!-- Password input--> <div class="form-group"> <label class="col-md-4 control-label" for="password">Password</label> <div class="col-md-2"> <input id="password" name="password" type="password" placeholder="Password" class="form-control input-md" required=""> </div> </div> <!-- Password input--> <div class="form-group"> <label class="col-md-4 control-label" for="password2">Repeat Password</label> <div class="col-md-2"> <input id="password2" name="password2" type="password" placeholder="Repeat Password" class="form-control input-md" required=""> </div> </div> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="emailaddr">Email</label> <div class="col-md-2"> <input id="emailaddr" name="emailaddr" type="text" placeholder="Email" class="form-control input-md" required=""> </div> </div> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="hostkey">Host Key</label> <div class="col-md-2"> <input id="hostkey" name="hostkey" type="text" placeholder="Host Key" class="form-control input-md" required=""> </div> </div> <!-- Button --> <div class="form-group"> <label class="col-md-4 control-label" for="submit"></label> <div class="col-md-4"> <button id="submit" name="submit" class="btn btn-primary">Submit</button> </div> </div> </fieldset> </form> <div class="container"> <div class="row"> </div> </div>

Related: See More


Questions / Comments: