"Member SignUp - Register"
Bootstrap 3.3.0 Snippet by cengizgoren

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">
<section>
<h1 class="entry-title"><span>Sign Up</span> </h1>
<hr>
<form class="form-horizontal" method="post" name="signup" id="signup" enctype="multipart/form-data" >
<div class="form-group">
<label class="control-label col-sm-3">Email ID <span class="text-danger">*</span></label>
<div class="col-md-8 col-sm-9">
<div class="input-group">
<span class="input-group-addon"><i class="glyphicon glyphicon-envelope"></i></span>
<input type="email" class="form-control" name="emailid" id="emailid" placeholder="Enter your Email ID" value="">
</div>
<small> Your Email Id is being used for ensuring the security of your account, authorization and access recovery. </small> </div>
</div>
<div class="form-group">
<label class="control-label col-sm-3">Set Password <span class="text-danger">*</span></label>
<div class="col-md-5 col-sm-8">
<div class="input-group">
<span class="input-group-addon"><i class="glyphicon glyphicon-lock"></i></span>
<input type="password" class="form-control" name="password" id="password" placeholder="Choose password (5-15 chars)" value="">
</div>
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-3">Confirm Password <span class="text-danger">*</span></label>
<div class="col-md-5 col-sm-8">
<div class="input-group">
<span class="input-group-addon"><i class="glyphicon glyphicon-lock"></i></span>
<input type="password" class="form-control" name="cpassword" id="cpassword" placeholder="Confirm your password" value="">
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
@import url(http://fonts.googleapis.com/css?family=Roboto:400,300,100,500,700);
@import url(http://fonts.googleapis.com/css?family=Roboto+Condensed:400,300,700);
body {
background: #fff;
font-family: 'Roboto', sans-serif;
color:#333;
line-height: 22px;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Roboto Condensed', sans-serif;
font-weight: 400;
color:#111;
margin-top:5px;
margin-bottom:5px;
}
h1, h2, h3 {
text-transform:uppercase;
}
input.upload {
position: absolute;
top: 0;
right: 0;
margin: 0;
padding: 0;
font-size: 12px;
cursor: pointer;
opacity: 1;
filter: alpha(opacity=1);
}
.form-inline .form-group{
margin-left: 0;
margin-right: 0;
}
.control-label {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: