-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index -3- ForgetPass.html
50 lines (43 loc) · 1.53 KB
/
Index -3- ForgetPass.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Forget Password</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="Style -3- ForgetPass.css">
<script src="Script -3- ForgetPass.js" defer></script>
<title>Document</title>
</head>
<body>
<section>
<!-- Header -->
<header>
<h2>Forgot Password</h2>
<p>If you forgotten your password, please enter your company's email address associated with you account</p>
</header>
<div class="form">
<!-- Email -->
<div>
<input type="email" required placeholder="" class="email">
<label for="">Enter company email</label>
</div>
<!-- Password -->
<div>
<input type="password" placeholder="" class="pass-input">
<label for="">Create new password</label>
</div>
<!-- Password Confirm -->
<div>
<input type="password" placeholder="" class="pass-confirmInput">
<label for="">Confirm your password</label>
</div>
<!-- Submit -->
<div class="buttons">
<input type="submit" value="Reset Password" class="input-btn">
<input type="submit" value="Reset Password" class="input-btn-submit">
<button class="showPass-btn">Show Pass</button>
</div>
</div>
</section>
</body>
</html>