-
Notifications
You must be signed in to change notification settings - Fork 1
/
Registration form.html
156 lines (153 loc) · 4.17 KB
/
Registration form.html
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Bootstrap Sign up Form with Rounded Social Buttons</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,700">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
<style>
.form-control {
font-size: 16px;
transition: all 0.4s;
box-shadow: none;
}
.form-control:focus {
border-color: #5cb85c;
}
.form-control, .btn {
border-radius: 50px;
outline: none !important;
}
.signup-form {
width: 480px;
margin: 0 auto;
padding: 30px 0;
}
.signup-form form {
border-radius: 5px;
margin-bottom: 20px;
background: #fff;
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
padding: 40px;
}
.signup-form a {
color: #5cb85c;
}
.signup-form h2 {
text-align: center;
font-size: 34px;
margin: 10px 0 15px;
}
.signup-form .hint-text {
color: #999;
text-align: center;
margin-bottom: 20px;
}
.signup-form .form-group {
margin-bottom: 20px;
}
.signup-form .btn {
font-size: 18px;
line-height: 26px;
font-weight: bold;
text-align: center;
}
.signup-btn {
text-align: center;
border-color: #5cb85c;
transition: all 0.4s;
}
.signup-btn:hover {
background: #5cb85c;
opacity: 0.8;
}
.or-seperator {
margin: 50px 0 15px;
text-align: center;
border-top: 1px solid #e0e0e0;
}
.or-seperator b {
padding: 0 10px;
width: 40px;
height: 40px;
font-size: 16px;
text-align: center;
line-height: 40px;
background: #fff;
display: inline-block;
border: 1px solid #e0e0e0;
border-radius: 50%;
position: relative;
top: -22px;
z-index: 1;
}
.social-btn .btn {
color: #fff;
margin: 10px 0 0 15px;
font-size: 15px;
border-radius: 50px;
font-weight: normal;
border: none;
transition: all 0.4s;
}
.social-btn .btn:first-child {
margin-left: 0;
}
.social-btn .btn:hover {
opacity: 0.8;
}
.social-btn .btn-primary {
background: #507cc0;
}
.social-btn .btn-info {
background: #64ccf1;
}
.social-btn .btn-danger {
background: #df4930;
}
.social-btn .btn i {
float: left;
margin: 3px 10px;
font-size: 20px;
}
</style>
</head>
<body>
<div class="signup-form">
<form action="/examples/actions/confirmation.php" method="post">
<h2>Create an Account</h2>
<p class="hint-text">Sign up with your social media account or email address</p>
<div class="social-btn text-center">
<a href="#" class="btn btn-primary btn-lg"><i class="fa fa-facebook"></i> Facebook</a>
<a href="#" class="btn btn-info btn-lg"><i class="fa fa-twitter"></i> Twitter</a>
<a href="#" class="btn btn-danger btn-lg"><i class="fa fa-google"></i> Google</a>
</div>
<div class="or-seperator"><b>or</b></div>
<div class="form-group">
<input type="text" class="form-control input-lg" name="username" placeholder="Certificate name" required="required">
</div>
<div class="form-group">
<input type="email" class="form-control input-lg" name="email" placeholder="Email Address" required="required">
</div>
<div class="form-group">
<input type="number" class="form-control input-lg" name="number" placeholder="Mobile number" required="required">
</div>
<div class="form-group">
<input type="password" class="form-control input-lg" name="password" placeholder="Password" required="required">
</div>
<div class="form-group">
<input type="password" class="form-control input-lg" name="confirm_password" placeholder="Confirm Password" required="required">
</div>
<div class="form-group">
<button type="submit" class="btn btn-success btn-lg btn-block signup-btn">Sign Up</button>
</div>
</form>
<div class="text-center">Already have an account? <a href="LoginPage.html">Login here</a></div>
</div>
</body>
</html>