-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsignup.html
More file actions
56 lines (56 loc) · 1.63 KB
/
signup.html
File metadata and controls
56 lines (56 loc) · 1.63 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Signup</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css"
rel="stylesheet"
/>
</head>
<body>
<div
class="container d-flex justify-content-center align-items-center vh-100"
>
<div class="card p-4 shadow" style="width: 30rem">
<h3 class="text-center">Create an Account</h3>
<form>
<div class="mb-3">
<label for="signupEmail" class="form-label">Email address</label>
<input
type="email"
class="form-control"
id="signupEmail"
required
/>
</div>
<div class="mb-3">
<label for="signupPassword" class="form-label">Password</label>
<input
type="password"
class="form-control"
id="signupPassword"
required
/>
</div>
<div class="mb-3">
<label for="confirmPassword" class="form-label"
>Confirm Password</label
>
<input
type="password"
class="form-control"
id="confirmPassword"
required
/>
</div>
<button type="submit" class="btn btn-primary w-100">Sign Up</button>
</form>
<p class="text-center mt-3">
Already have an account? <a href="signin.html">Sign In</a>
</p>
</div>
</div>
</body>
</html>