forked from janavipandole/Cara
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforgotPassword.html
More file actions
94 lines (73 loc) · 2.96 KB
/
Copy pathforgotPassword.html
File metadata and controls
94 lines (73 loc) · 2.96 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Forgot Password | Cara</title>
<link rel="icon" href="images/favicon.jpg">
<link href="https://cdn.jsdelivr.net/npm/remixicon@4.5.0/fonts/remixicon.css" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" />
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="toast.css">
<link rel="stylesheet" href="forgotPassword.css">
</head>
<body>
<!-- HEADER -->
<section id="header">
<a href="index.html">
<img src="images/logo.png" alt="Cara Logo">
</a>
<ul id="navbar">
<li><a href="index.html">Home</a></li>
<li><a href="shop.html">Shop</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="login.html" id="login-btn">Login</a></li>
</ul>
</section>
<!-- FORGOT SECTION -->
<section id="forgot-section">
<div class="auth-card">
<h2>Forgot Password</h2>
<p class="subtitle">
Enter your email to reset your password 🔒
</p>
<form id="forgotForm" novalidate>
<!-- EMAIL -->
<div class="form-group">
<label>Email Address</label>
<input type="email" id="forgotEmail" placeholder="Enter your registered email" required>
</div>
<!-- NEW PASSWORD -->
<div class="form-group">
<label>New Password</label>
<div class="password-wrapper">
<input type="password" placeholder="Enter your new password" id="forgotNewPass" required>
<i class="ri-eye-line toggle-eye" id="toggleNewPass"></i>
</div>
</div>
<!-- CONFIRM PASSWORD -->
<div class="form-group">
<label>Confirm Password</label>
<div class="password-wrapper">
<input type="password" placeholder="Confirm your new password" id="forgotConfirmPass" required>
<i class="ri-eye-line toggle-eye" id="toggleConfirmPass"></i>
</div>
</div>
<!-- BUTTON -->
<button type="submit" class="btn-primary">
RESET PASSWORD
</button>
</form>
<!-- BACK TO LOGIN -->
<div class="switch-auth">
Remember your password?
<a href="login.html">Login</a>
</div>
</div>
</section>
</body>
<script src="app.js"></script>
<script src="forgotPassword.js"></script>
</html>