forked from ryukinouu/CSC309-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
332 lines (319 loc) · 19.8 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
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSC309 PetPal Phase1 - Home</title>
<!-- Favicons -->
<link rel="apple-touch-icon" sizes="180x180" href="assets/img/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/favicon//favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/img/favicon//favicon-16x16.png">
<link rel="manifest" href="assets/img/favicon//site.webmanifest">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="assets/css/style.css">
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-Atwg2Pkwv9vp0ygtn1JAojH0nYbwNJLPhwyoVbhoPwBhjQPR5VtM2+xf0Uwh9KtT"
crossorigin="anonymous"></script>
</head>
<body>
<div class="page_container">
<div class="content_wrap">
<header>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="/search/search-initial.html">
<img src="/assets/img/favicon/favicon-32x32.png" width="30" height="30" class="d-inline-block align-top" alt="">
PetPal
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button"
data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
David's Part
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="/search/search.html">Search Page</a></li>
<li><a class="dropdown-item" href="/search/search-initial.html">Search Initial Page</a></li>
<li><a class="dropdown-item" href="/search/search-filter.html">Search Filtered Page</a></li>
<li>
<hr class="dropdown-divider">
</li>
<li><a class="dropdown-item" href="/search/petdetails.html">Pet Details Page</a></li>
<li><a class="dropdown-item" href="/search/petdetails-adopted.html">Pet Details Adopted Page</a></li>
<li><a class="dropdown-item" href="/search/petdetails-pending.html">Pet Details Pending Page</a></li>
<li><a class="dropdown-item" href="/search/petdetails-withdrawn.html">Pet Details Withdrawn Page</a></li>
<li>
<hr class="dropdown-divider">
</li>
<li><a class="dropdown-item" href="/search/notifications.html">Notifications Page</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button"
data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Mahir's Part
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="/detail/adoption.html">Adoption Page</a></li>
<li><a class="dropdown-item" href="/detail/application.html">Application Page</a></li>
<li><a class="dropdown-item" href="/detail/creation.html">Creation Page</a></li>
<li>
<hr class="dropdown-divider">
</li>
<li><a class="dropdown-item" href="/detail/error.html">Error Page</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button"
data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Gavin's Part
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="/detail/update.html">Update Pet Page</a></li>
<li><a class="dropdown-item" href="/shelter/detail.html">Shelter Details Page</a></li>
<li><a class="dropdown-item" href="/shelter/management.html">Shelter Manage Page</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button"
data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Lingyun's Part
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="/login.html">Login page</a></li>
<li><a class="dropdown-item" href="/login-error.html">Login page with error</a></li>
<li><a class="dropdown-item" href="/signup.html">Sign up page</a></li>
<li><a class="dropdown-item" href="/signup-error.html">Sign up page with error</a></li>
<li><a class="dropdown-item" href="/account/pet-seeker-update.html">Update Account (Seeker)</a></li>
<li><a class="dropdown-item" href="/account/pet-seeker-update-error.html">Update Account with error (Seeker)</a></li>
<li><a class="dropdown-item" href="/account/pet-shelter-update.html">Update Account (Shelter)</a></li>
<li><a class="dropdown-item" href="/account/pet-shelter-update-error.html">Update Account with error (Shelter)</a></li>
</ul>
</ul>
<a class="btn btn-outline-success login" href="/login.html">Log In</a>
<a class="btn btn-outline-success signup" href="/signup.html">Sign Up</a>
</div>
</div>
</nav>
</header>
<main>
<div class="container">
<div class="row justify-content-center">
<form class="row g-3 form-signup" action="" method="">
<h1 class="form-title">Sign Up</h1>
<div class="col-md-6">
<div class="form-floating">
<input type="text" class="form-control" id="inputFirst" required>
<label for="inputFirst">First name</label>
</div>
</div>
<div class="col-md-6">
<div class="form-floating">
<input type="text" class="form-control" id="inputLast" required>
<label for="inputLast" class="form-label">Last name</label>
</div>
</div>
<div class="col-md-6">
<div class="form-floating">
<input type="email" class="form-control" id="inputEmail" required>
<label for="inputEmail" class="form-label">Email</label>
</div>
</div>
<div class="col-md-6">
<div class="form-floating">
<input type="text" class="form-control" id="inputUsername" autocomplete="username" required>
<label for="inputUsername" class="form-label">Username</label>
</div>
</div>
<div class="col-md-6">
<div class="form-floating">
<input type="password" class="form-control" id="inputPassword1" autocomplete="new-password" required>
<label for="inputPassword1" class="form-label">Password</label>
<span id="passwordHelpInline" class="form-text">
**Must be 8-20 characters long.
</span>
</div>
</div>
<div class="col-md-6">
<div class="form-floating">
<input type="password" class="form-control" id="inputPassword2" autocomplete="new-password" required>
<label for="inputPassword2" class="form-label">Confirmed-Password</label>
</div>
</div>
<h5 class="form-subtitle">Who are you?</h5>
<div class="col-12">
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="radio-pet" id="pet-seeker" required>
<label class="form-check-label" for="pet-seeker">
I'm a Pet Seeker.
</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="radio-pet" id="pet-shelter" required>
<label class="form-check-label" for="pet-shelter">
I'm a Pet Shelter.
</label>
</div>
</div>
<h5 class="form-subtitle">Email Preferences</h5>
<div class="col-12">
<div class="form-check">
<label class="form-check-label" for="preference-check1">
I would like to receive communications from PetPal,
including info on pet adoption and pet care,
promotional materials and more. You can withdraw consent at any time.
</label>
<input class="form-check-input" type="checkbox" name="preference-check1"
id="preference-check1">
</div>
</div>
<div class="col-12">
<div class="form-check">
<label class="form-check-label" for="preference-check2">
I would like to receive the latest news, updates, promotions,
special offers and exclusive savings from PetPal.
You can withdraw consent at any time.
</label>
<input class="form-check-input" type="checkbox" name="preference-check2"
id="preference-check2">
</div>
</div>
<div class="d-grid gap-2 col-6 mx-auto">
<button type="submit" class="btn btn-primary">Sign up</button>
</div>
</form>
<div class="login-signup">
<p>Already have an account? </p>
<a href="login.html">Log in</a>
</div>
</div>
</div>
</main>
</div>
<!-- Footer -->
<footer class="text-center text-lg-start bg-light text-muted">
<!-- Section: Social media -->
<section class="d-flex justify-content-center justify-content-lg-between p-4 border-bottom">
<!-- Left -->
<div class="me-5 d-none d-lg-block">
<span>Get connected with us on social networks:</span>
</div>
<!-- Left -->
<!-- Right -->
<div>
<a href="" class="me-4 text-reset">
<i class="fab fa-facebook-f"></i>
</a>
<a href="" class="me-4 text-reset">
<i class="fab fa-twitter"></i>
</a>
<a href="" class="me-4 text-reset">
<i class="fab fa-google"></i>
</a>
<a href="" class="me-4 text-reset">
<i class="fab fa-instagram"></i>
</a>
<a href="" class="me-4 text-reset">
<i class="fab fa-linkedin"></i>
</a>
<a href="" class="me-4 text-reset">
<i class="fab fa-github"></i>
</a>
</div>
<!-- Right -->
</section>
<!-- Section: Social media -->
<!-- Section: Links -->
<section class="">
<div class="container text-center text-md-start mt-5">
<!-- Grid row -->
<div class="row mt-3">
<!-- Grid column -->
<div class="col-md-3 col-lg-4 col-xl-3 mx-auto mb-4">
<!-- Content -->
<h6 class="text-uppercase fw-bold mb-4">
<i class="fas fa-gem me-3"></i>PetPal
</h6>
<p>
Adopt your pet today!
</p>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-2 col-lg-2 col-xl-2 mx-auto mb-4">
<!-- Links -->
<h6 class="text-uppercase fw-bold mb-4">
Products
</h6>
<p>
<a href="#!" class="text-reset">Angular</a>
</p>
<p>
<a href="#!" class="text-reset">React</a>
</p>
<p>
<a href="#!" class="text-reset">Vue</a>
</p>
<p>
<a href="#!" class="text-reset">Laravel</a>
</p>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-3 col-lg-2 col-xl-2 mx-auto mb-4">
<!-- Links -->
<h6 class="text-uppercase fw-bold mb-4">
Useful links
</h6>
<p>
<a href="#!" class="text-reset">Pricing</a>
</p>
<p>
<a href="#!" class="text-reset">Settings</a>
</p>
<p>
<a href="#!" class="text-reset">Orders</a>
</p>
<p>
<a href="#!" class="text-reset">Help</a>
</p>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-4 col-lg-3 col-xl-3 mx-auto mb-md-0 mb-4">
<!-- Links -->
<h6 class="text-uppercase fw-bold mb-4">Contact</h6>
<p><i class="fas fa-home me-3"></i> Toronto, ON, Canada</p>
<p>
<i class="fas fa-envelope me-3"></i>
utoronto.ca
</p>
<p><i class="fas fa-phone me-3"></i> + 01 234 567 88</p>
<p><i class="fas fa-print me-3"></i> + 01 234 567 89</p>
</div>
<!-- Grid column -->
</div>
<!-- Grid row -->
</div>
</section>
<!-- Section: Links -->
<!-- Copyright -->
<div class="text-center p-4" style="background-color: rgba(0, 0, 0, 0.05);">
© 2023 Copyright:
<a class="text-reset fw-bold" href="https://PetPal.com/">PetPal.com</a>
</div>
<!-- Copyright -->
</footer>
<!-- Footer -->
</div>
</body>
</html>