-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
126 lines (123 loc) · 3.56 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Signup page</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9"
crossorigin="anonymous"
/>
<script
src="https://kit.fontawesome.com/d74f12bccc.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="style.css" />
<style>
body {
background-color: #f8f9fa;
}
.form-signup {
width: 90%;
max-width: 400px;
margin: 80px auto;
}
.form-signup h2 {
color: #0083ab;
}
.form-floating {
margin-bottom: 10px;
}
@media (min-width: 768px) {
.form-signup {
width: 25%;
}
}
</style>
</head>
<body class="d-flex align-items-center py-4 bg-body-tertiary">
<div id="loader-wrapper">
<div id="loader"></div>
</div>
<main class="form-signup" id="content">
<form>
<h2 class="mb-3 fw-normal text-center">Please sign up</h2>
<div class="form-floating">
<input
type="text"
class="form-control"
id="floatingInput"
placeholder="[email protected]"
fdprocessedid="ctgp2g"
required
/>
<label for="floatingInput">Your name</label>
</div>
<div class="form-floating">
<input
type="email"
class="form-control"
id="floatingInput"
placeholder="[email protected]"
fdprocessedid="ctgp2g"
required
/>
<label for="floatingInput">Email address</label>
</div>
<div class="form-floating">
<input
type="password"
class="form-control"
id="floatingPassword"
placeholder="Password"
fdprocessedid="d0bz0b"
required
/>
<label for="floatingPassword">Create Password</label>
</div>
<div class="form-floating">
<input
type="password"
class="form-control"
id="floatingPassword"
placeholder="Password"
fdprocessedid="d0bz0b"
required
/>
<label for="floatingPassword">Confirm Password</label>
</div>
<div class="form-check text-start my-3">
<input
class="form-check-input"
type="checkbox"
value="remember-me"
id="flexCheckDefault"
required
/>
<label class="form-check-label" for="flexCheckDefault">
Do you agree our terms and conditions
</label>
</div>
<button
class="btn btn-primary w-100 py-2"
type="submit"
fdprocessedid="1zxuf5"
>
Sign up
</button>
<p style="margin-top: 10px; text-align: center">
Already have an account? <a href="./login.html">Login</a>
</p>
<p class="mt-3 mb-3 text-body-secondary text-center">© 2023–2024</p>
</form>
</main>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm"
crossorigin="anonymous"
></script>
<script src="script.js"></script>
</body>
</html>