forked from omroy07/AgriTech
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforgot-password.html
More file actions
47 lines (43 loc) · 1.67 KB
/
forgot-password.html
File metadata and controls
47 lines (43 loc) · 1.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/png" href="images/logo.png">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Forgot Password - AgriTech</title>
<link rel="icon" type="image/png" href="/AgriTech/images/logo.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="login.css">
<link rel="stylesheet" href="theme.css">
</head>
<body>
<div class="form-container">
<div style="position: absolute; top: 20px; right: 20px;">
<button class="theme-toggle" aria-label="Toggle dark/light mode" style="background: rgba(46, 125, 50, 0.1); border: 1px solid rgba(46, 125, 50, 0.3); color: #2e7d32;">
<i class="fas fa-sun sun-icon"></i>
<i class="fas fa-moon moon-icon"></i>
<span class="theme-text">Light</span>
</button>
</div>
<div class="brand-section">
<div class="brand-icon">
<i class="fas fa-key"></i>
</div>
<h2>Reset Password</h2>
<p class="form-subtitle">Enter your email to reset your password</p>
</div>
<form id="forgot-password-form">
<div class="input-group">
<i class="fas fa-envelope"></i>
<input type="email" id="email" placeholder="Enter your email" required>
</div>
<button type="submit" id="reset-btn">
<span id="reset-text">Reset Password</span>
</button>
<p>Remember your password? <a href="login.html">Sign In</a></p>
</form>
</div>
<script src="theme.js"></script>
<script type="module" src="firebase.js"></script>
</body>
</html>