-
Notifications
You must be signed in to change notification settings - Fork 0
/
forgot.html
58 lines (58 loc) · 1.69 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!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="/forgot.css" />
<title>Forgot your password?</title>
</head>
<body>
<div class="background"><img src="/assets/img/login-background.svg" /></div>
<div class="login-page">
<div class="login-left">
<div class="login-image"><img src="/assets/img/login-image.svg" /></div>
<div class="first-text">
<h2>Monitor your<br />school performance</h2>
</div>
<div class="second-text">
<h3>
Improve your studies by using student<br />performance prediction
system
</h3>
</div>
<div class="bottom-nav">
<div class="first-bar"></div>
<div class="second-bar"></div>
<div class="third-bar"></div>
</div>
</div>
<div class="login-right">
<div class="oh-no">
<h1>Oh, no!</h1>
<h2>Forgot your password?</h2>
</div>
<div class="enter-email">
<h3>
Enter your email and we'll send<br />you a link to reset your
password
</h3>
</div>
<div class="email">
<div class="email-input"></div>
<p>Email</p>
<input
class="input-text"
type="email"
placeholder="Enter your email adress..."
/>
</div>
<a href="#">
<div class="send-button" href="#">
<p>Send</p>
</div>
</a>
</div>
</div>
</body>
</html>