-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathforgetPassword.html
38 lines (30 loc) · 1.02 KB
/
forgetPassword.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./styles/forgetPassword.css">
<title>Forget Password</title>
</head>
<body>
<div id="container_forget">
<div id="forget_1">
<img src="https://static.buffer.com/login/public/img/buffer-logo.svg" alt="">
</div>
<div id="forget_2">
<div>
<h1>Reset Your Password</h1>
<p>Just let us know the email you use to sign in to Buffer and we’ll help you get your password back.</p>
</div>
<div>
<label for="">Email Address</label>
<input type="text" name="" id="forget_email" oninput="changeBtnColor()">
<button onclick="resetPassword()">Send Password Reset Email</button>
</div>
<div><a href="login.html">Take me back to log in</a></div>
</div>
</div>
</body>
</html>
<script src="./scripts/forgetPassword.js"></script>