"Registration form"
Bootstrap 3.3.0 Snippet by Aliagha

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
<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 action="/action_page.php" class="col-xs-12 col-sm-12 col-md-12">
<h2>Please fill all mandatory(*) fields</h2>
<div class="form-group">
<input type="text" class="form-control" id="name" placeholder="Enter Name *" name="name" required>
</div>
<div class="form-group">
<input type="text" class="form-control" id="surname" placeholder="Enter Second Name *" name="secondName" required>
</div>
<div class="form-group">
<input type="email" class="form-control" id="email" placeholder="Enter email *" name="email" required>
</div>
<div class="form-group">
<input type="password" class="form-control" id="pwd" placeholder="Enter password *" name="pwd" required>
</div>
<div class="form-group">
<input type="password" class="form-control" id="pwd" placeholder="Repeat password *" name="Rptpwd" required>
</div>
<div class="checkbox">
<label><input type="checkbox" name="remember"> <span>Remember me</span></label>
</div>
<button type="submit" class="btn btn-success">Submit <i class="glyphicon glyphicon-send"></i></button>
</form>
</div>
</div>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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
body{
background:black;
}
.container{
display:flex;
flex-direction:row;
justify-content:center;
align-items:center;
}
.form-control{
border:none;
border-bottom:3px solid dodgerblue;
background:black;
color:white;
border-radius:0px;
}
.row{
width:60%;
margin-top:50px;
border: 3px solid orange;
border-radius:14px;
height:auto;
}
form h2{
color:white;
}
.checkbox span{
color:white;
}
.checkbox{
float:left;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: