"Clean Registration form"
Bootstrap 3.3.0 Snippet by Damnation

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<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">
<div class="col-md-8 col-md-offset-2">
<form role="form" method="POST" action="#">
<legend class="text-center">Register</legend>
<fieldset>
<legend>Account Details</legend>
<div class="form-group col-md-6">
<label for="first_name">First name</label>
<input type="text" class="form-control" name="" id="first_name" placeholder="First Name">
</div>
<div class="form-group col-md-6">
<label for="last_name">Last name</label>
<input type="text" class="form-control" name="last_name" id="" placeholder="Last Name">
</div>
<div class="form-group col-md-12">
<label for="">Email</label>
<input type="email" class="form-control" name="" id="" placeholder="Email">
</div>
<div class="form-group col-md-6">
<label for="password">Password</label>
<input type="password" class="form-control" name="" id="password" placeholder="Password">
</div>
<div class="form-group col-md-6">
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
form * {
border-radius:0 !important;
}
form > fieldset > legend {
font-size:120%;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
$(document).ready(function() {
$('#found_site').on('change', function() {
$(this).val() == "other" ? $('#specify').closest('.form-group').show() : $('#specify').closest('.form-group').hide();
})
})
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: