-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpassword-reset.html
More file actions
33 lines (31 loc) · 1.24 KB
/
Copy pathpassword-reset.html
File metadata and controls
33 lines (31 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" type="text/css" href="ui.css" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Password Reset</title>
</head>
<body id="p-body">
<div class="p-header">
<nav>
<div class="logo"><span><img src="http://via.placeholder.com/20/0000FF/808080" class="mr" alt="placeholder-image">Password Reset</span></div>
<div class="lang"><span class="center">English <i class="fa fa-caret-down"></i></span></div>
</nav>
</div>
<div class="reset-password">
<form action="#" id="forgot-password-form">
<h2>Find your Primary account</h2>
<p>Enter your email, phone number, or username.</p>
<input
type="text"
name="forgotPasswordEmail"
/>
<!-- <input class="input-primary" type="submit" value="Reset Password" /> -->
<button type="submit" class="btn-primary">Reset password</button>
</form>
</div>
</body>
</html>