forked from Anjaliavv51/Matrubodhah
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForgotpassword.html
104 lines (102 loc) · 2.73 KB
/
Forgotpassword.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Forgot Password</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f8f8f8;
}
.container {
display: flex;
width: 750px;
background: white;
border-radius: 10px;
box-shadow: 0 14px 28px rgba(0,0,0,0.25),0 10px 10px rgba(0,0,0,0.22);
overflow: hidden;
height: 500px;
}
.left {
width: 50%;
padding: 40px;
justify-content: center;
align-items: center;
margin-top: 120px;
}
.right {
width: 50%;
background: #e5a186;
color: white;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding:10px;
}
h2 {
margin-bottom: 20px;
}
input {
background: #eee;
width: 100%;
padding: 10px;
margin: 10px 0;
border: 1px solid #ccc;
border-radius: 5px;
}
button {
width: 100%;
padding: 10px;
background: #e5a186;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
}
button:hover {
background: #e5a186;
color:black;
text-decoration: underline;
}
.back-link {
display: block;
text-align: center;
margin-top: 10px;
color: blue;
text-decoration: none;
}
.back-link:hover{
text-decoration: underline;
color: red;
}
</style>
</head>
<body>
<div class="container">
<div class="left">
<h2>Forgot Password</h2>
<p>Enter your email to reset your password</p>
<input type="email" placeholder="Email" required>
<button>Reset Password</button>
<a href="login.html" class="back-link">Back to Login</a>
</div>
<div class="right">
<h2>Need Help?</h2>
<p>Enter your registered email, and we'll send you a link to reset your password.</p>
</div>
</div>
</body>
</html>