"Modal sign up form"
Bootstrap 3.3.0 Snippet by Deepashika

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 ---------->
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div class="container">
<div class="col-md-12 col-lg-offset-2">
<div class="login-signup">
<div class="row">
<div class="col-md-8 nav-tab-holder">
</div>
</div>
<div class="tab-content">
<div role="tabpanel" class="tab-pane active" id="home">
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
.login-signup {
padding: 25 0 25px;
margin-top:25px;
}
.login-signup {
padding: 0 0 25px;
}
.btn-success {
background: #23bab5;
border-radius:0;
border: 2px solid #23bab5;
webkit-transition: all 400ms cubic-bezier(.4,0,.2,1);
transition: all 400ms cubic-bezier(.4,0,.2,1);
}
a {
color: #23bab5;
}
ul {
list-style-type: none;
}
article[role="login"] {
background: #fff;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 10px rgba(0, 0, 0, 0.24);
webkit-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
padding: 30px 50px;
margin-bottom: 20px;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: