-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforget.html
More file actions
57 lines (47 loc) · 2.25 KB
/
forget.html
File metadata and controls
57 lines (47 loc) · 2.25 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
<!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">
<title>forgot password</title>
<link rel="stylesheet" href="auth_signin.css">
<link rel="stylesheet" href="../styles/navbar.css">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
</head>
<body>
<div id="navbar" class="navbar"></div>
<div class="container">
<h2>Forgot your password?</h2>
<form class="new_user" id="new_user" action="/users/password" accept-charset="UTF-8" method="post"><input
name="utf8" type="hidden" value="✓" /><input type="hidden" name="authenticity_token"
value="MwQ0wS/ASbJN193ldBZBZ6lO9YuJijVVuGarh5IBuYwrLOYthTgI4WlXXx5CEVG2G0mV5pkoyZekOlF6uHq+wQ==" />
<div class="form-group">
<label for="user_email">Email</label>
<input autofocus="autofocus" required="required" class="form-control" type="email" value=""
name="user[email]" id="user_email" />
</div>
<div class="actions form-group">
<input type="submit" name="commit" value="Send me reset password instructions" class="btn btn-success"
data-disable-with="Send me reset password instructions" />
</div>
</form>
<a href="./auth_signin.html">Log in</a>
<a href="./auth_signup.html">Sign up</a>
<div class="gettoknow">
<h4>Get To Know Us</h4>
<ul>
<li><a href="../about.html">About </a></li>
<li><a href="../contact.html">Contact</a></li>
<li><a href="/search">Search</a></li>
<li><a href="./privacyPolicy.html">Privacy Policy</a></li>
<li><a href="/refund-policy">Refund Policy</a></li>
<li><a href="/make-money">Earn Money Online</a></li>
<li><a href="https://www.quickbuyer.in" target="_blank">QuickBuyer</a></li>
</ul>
</div>
</div>
</body>
</html>
<script type="module" src="../nav.js"></script>