"singup"
Bootstrap 3.3.0 Snippet by tumss

<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 ----------> <div class="container"> <div class="row"> <form class="form-horizontal"> <fieldset> <!-- Form Name --> <legend>Singup</legend> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="Username">Username</label> <div class="col-md-5"> <input id="Username" name="Username" placeholder="ชื่อผู้ใช้ของคุณ" class="form-control input-md" required="" type="text"> <span class="help-block">กรอกชื่อผู้ใช้ของคุณ</span> </div> </div> <!-- Password input--> <div class="form-group"> <label class="col-md-4 control-label" for="txtPassword">Password</label> <div class="col-md-5"> <input id="txtPassword" name="txtPassword" placeholder="รหัสผ่าน" class="form-control input-md" required="" type="password"> <span class="help-block">กำหนดรหัสผ่านของคุณ</span> </div> </div> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="textinput">Email :</label> <div class="col-md-5"> <input id="textinput" name="textinput" placeholder="exsample@domain.com" class="form-control input-md" required="" type="text"> <span class="help-block">กรอกอีเมลของคุณ</span> </div> </div> <!-- Password input--> <div class="form-group"> <label class="col-md-4 control-label" for="txtConpassword">Confrim Password</label> <div class="col-md-5"> <input id="txtConpassword" name="txtConpassword" placeholder="ยืนยันรหัสผ่านของคุณ" class="form-control input-md" required="" type="password"> <span class="help-block">ยืนยันรหัสผ่านของคุณ</span> </div> </div> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="txtName">Name</label> <div class="col-md-5"> <input id="txtName" name="txtName" placeholder="ชื่อ-นามสกุล" class="form-control input-md" required="" type="text"> <span class="help-block">ชื่อ-นามสกุล ของคุณ</span> </div> </div> <!-- Button (Double) --> <div class="form-group"> <label class="col-md-4 control-label" for="BtnSet1"></label> <div class="col-md-8"> <button id="BtnSet1" name="BtnSet1" class="btn btn-primary">Send Password</button> <button id="BtnSet2" name="BtnSet2" class="btn btn-warning">Cancle</button> </div> </div> </fieldset> </form> </div> </div>
.container { background-color:#CCC; }

Related: See More


Questions / Comments: