-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSignUp.html
95 lines (94 loc) · 2.65 KB
/
SignUp.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet">
<title>SignUp</title>
<link rel="stylesheet" href="./css/bootstrap.min.css">
<style type="text/css">
body {
color: #fff;
background: #4c535d;
font-family: 'Roboto', sans-serif;
}
.form-control {
min-height: 50px;
border-color: #e1e4e5;
}
.form-control, .btn {
border-radius: 3px;
}
.signup-form {
width: 450px;
margin: 0 auto;
padding: 30px 0;
}
.signup-form form {
color: #9ba5a8;
border-radius: 3px;
margin-bottom: 15px;
background: #fff;
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
padding: 30px;
}
.signup-form h2 {
color: #333;
font-weight: bold;
}
.signup-form .form-group {
margin-bottom: 20px;
}
.signup-form .btn {
font-size: 16px;
font-weight: bold;
background: #5fcaba;
border: none;
min-width: 140px;
}
.signup-form .btn:hover, .signup-form .btn:focus {
background: #3fc0ad;
}
.signup-form a {
color: #fff;
text-decoration: underline;
}
.signup-form form a {
color: #5fcaba;
text-decoration: none;
}
.signup-form form a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="signup-form">
<form action="" method="post">
<h2>Sign Up</h2>
<p>It's free and only takes a minute.</p>
<hr>
<div class="form-group">
<input type="text" class="form-control" name="username" placeholder="Username" required="required">
</div>
<div class="form-group">
<input type="email" class="form-control" name="email" placeholder="Email Address" required="required">
</div>
<div class="form-group">
<input type="password" class="form-control" name="password" placeholder="Password" required="required">
</div>
<div class="form-group">
<input type="password" class="form-control" name="confirm_password" placeholder="Confirm Password" required="required">
</div>
<div class="form-group">
<a href="./places.html">
<button type="button" class="btn btn-primary btn-block btn-lg">Sign Up</button>
</a>
</div>
<p class="small text-center">By clicking the Sign Up button, you agree to our <br><a href="#">Terms & Conditions</a>, and <a href="#">Privacy Policy</a>.</p>
</form>
<div class="text-center">Already have an account? <a href="./index.html">Login here</a></div>
</div>
</body>
</html>