"Simple Registration form"
Bootstrap 2.3.2 Snippet by jetman

<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/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" action='' method="POST"> <fieldset> <div id="legend"> <legend class="">Register</legend> </div> <div class="control-group"> <div class="control-group"> <!-- E-mail --> <label class="control-label" for="email">E-mail</label> <div class="controls"> <input type="text" id="email" name="email" placeholder="" class="input-xlarge"> </div> </div> <div class="control-group"> <!-- Password--> <label class="control-label" for="password">Password</label> <div class="controls"> <input type="password" id="password" name="password" placeholder="" class="input-xlarge"> <p class="help-block">Password should be at least 8 characters</p> </div> </div> <div class="control-group"> <!-- Password --> <label class="control-label" for="phone">Mobile Phone</label> <div class="controls"> <input type="text" id="phone" name="phone" placeholder="" class="input-xlarge"> </div> </div> <div class="btn-group" data-toggle="buttons"> <label class="btn btn-success active"> <input type="checkbox" autocomplete="off" checked> <span class="glyphicon glyphicon-ok"> It's okay to send me text messages</span> </label> <div class="control-group"> <!-- Button --> <div class="controls"> <button class="btn btn-success">Register</button> </div> </div> </fieldset> </form>

Related: See More


Questions / Comments: