-
Notifications
You must be signed in to change notification settings - Fork 0
/
password.html
37 lines (31 loc) · 1.1 KB
/
password.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Password Request</title>
<link rel="stylesheet" href="assets/css/password.css" />
</head>
<body>
<section id="password">
<div class="title">
<div class="title_text">
Request Password
</div>
</div>
<div class="container">
<form name="request" action="password.html" method="get" />
<label>
<input class="email" type="email" name="email" placeholder="writh your email here" />
</label>
<label>
<input class="submit" type="submit" name="submit" value="CONTINUE" />
</label>
</form>
<div class="links">
<a href="login.html" >Already have an account? Between here</a>
</div>
</div>
</section>
</body>
</html>