-
Notifications
You must be signed in to change notification settings - Fork 0
/
forgot.html
41 lines (41 loc) · 1.25 KB
/
forgot.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign up</title>
<!-- reset -->
<link rel="stylesheet" href="./css/reset.css">
<!-- components -->
<link rel="stylesheet" href="./css/button.css">
<link rel="stylesheet" href="./css/form.css">
<!-- custom -->
<link rel="stylesheet" href="./css/custom.css">
</head>
<body>
<div class="background"></div>
<main>
<div class="left-column">
<h1>Sign up</h1>
<footer>
<a href="#">Privacy policy</a>
&
<a href="#">terms of service</a>
</footer>
</div>
<div class="right-column">
<div class="close">×</div>
<form class="form">
<div class="form-row">
<label class="label" for="email">E-mail</label>
<input id="email" type="email">
<div class="form-row">
<div class="btn">Remind</div>
<span>or</span>
<a class="link" href="../">Sing in</a></p>
</div>
</form>
</div>
</main>
</body>
</html>