-
Notifications
You must be signed in to change notification settings - Fork 0
/
resetpassword.html
65 lines (56 loc) · 3.12 KB
/
resetpassword.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Reset Password - ShotStreak</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="tailwindextras.js"></script>
<link rel="stylesheet" href="main.css">
<link rel="icon" type="image/png" href="assets/favicon-48x48.png" sizes="48x48" />
<link rel="icon" type="image/svg+xml" href="assets/favicon.svg" />
<link rel="shortcut icon" href="assets/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="assets/apple-touch-icon.png" />
<meta name="apple-mobile-web-app-title" content="Shotstreak" />
<link rel="manifest" href="assets/site.webmanifest" />
</head>
<body class="bg-light-gray">
<!-- Registration Form Container -->
<div class="flex items-center justify-center min-h-screen">
<div class="bg-white p-8 rounded-lg shadow-lg max-w-md w-full">
<!-- Logo -->
<div class="text-center mb-6">
<img src="assets/isoLogo.svg" alt="ShotStreak Logo" class="mx-auto h-16">
<h1 class="text-2xl font-bold text-almostblack mt-4">Reset Your Password</h1>
</div>
<!-- Registration Form -->
<form id="registerForm" class="space-y-4" action="forgot_password.php" method="post" autocomplete="on">
<!-- Name Input -->
<div>
<label for="email" class="block text-sm font-medium text-gray-700">Email:</label>
<input type="email" name="email" id="email" maxlength="200" class="mt-1 p-2 w-full border rounded-md focus-visible:outline-coral" required>
</div>
<!-- Submit Button -->
<button type="submit" class="w-full bg-coral md:hover:bg-coralhov text-white py-2 rounded-md font-semibold hover:bg-coral-red-light transition-colors">Send Reset Email</button>
</form>
<!-- Already have an account -->
<div class="text-center mt-4">
<p class="text-sm text-gray-600"> <a href="login.html" class="text-coral font-semibold">Back to login</a></p>
</div>
</div>
</div>
<footer class="bg-darkslate py-8 text-white">
<div class="container mx-auto grid grid-cols-1 md:grid-cols-2 gap-4">
<div class="footer-links flex flex-col justify-center items-center">
<a href="index.html" class="block mb-2 text-center">Home</a>
<a href="register.html" class="block mb-2 text-center">Register</a>
<a href="login.html" class="block mb-2 text-center">Login</a>
<!-- Add more links -->
</div>
<div class="text-center flex justify-center items-center">
<p class="text-xs">© 2024 ShotStreak. All rights reserved.</p>
</div>
</div>
</footer>
</body>
</html>