generated from CodeChefVIT/template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathforgot.html
57 lines (55 loc) · 2.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Pacifico&display=swap" rel="stylesheet">
<link rel="stylesheet" href="forgot-style.css">
<title>shortify-login</title>
</head>
<body>
<nav>
<h1>shortify</h1>
</nav>
<section>
<div class="form-container">
<div class="error-box">Display error here.</div>
<div class="allPaper">
<div class="login-form" id="login-form">
<div class="exit">
<div class="exit1"></div>
<div class="exit2"></div>
</div>
<form autocomplete="off" action="">
<div class="headding">Reset</div>
<div class="email">
<i class="fas fa-at"></i>
<span class="single-form">
<input required type="text" name="s-email">
<label for="s-email"><span>Email</span></label>
</span>
</div>
<div class="password">
<i class="fas fa-key"></i>
<span class="single-form">
<input required type="password" name="s-email">
<label for="s-email"><span>Password</span></label>
</span>
</div>
<div class="submit-btn">
<button>Reset</button>
</div>
<div class="extra">
<a href="./login.html">Back to Login</a>
</div>
</form>
</div>
</div>
</div>
</section>
<script src="./forgot-script.js">
</script>
</body>
</html>