forked from Team-Helsinki/Project-Tax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
forgotpassword.html
103 lines (94 loc) · 3.82 KB
/
forgotpassword.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" type="text/css" href="dist/Styles/layout.css">
<title>Document</title>
</head>
<body>
<div class="header-section">
<div class="top-nav">
<ul class="top-nav-link">
<li><i class="fas fa-sign-in-alt"></i><a href="login.html">Sign In</a></li>
<li><i class="fas fa-user-plus"></i><a href="register.html">Register</a></li>
</ul>
</div>
<div class="logo-section">
<img src="https://res.cloudinary.com/dcczd9zz5/image/upload/v1567174130/ff_nbwkbr.png" width="300px">
</div>
<div class="main-nav">
<ul class="main-nav-link">
<li><a href="/index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="#">Contact Us</a></li>
<li>Fund Projects</li>
<li>Team</li>
</ul>
</div>
</div>
<form action="">
<div class="form-container forgot-form">
<h3 class="h3Forgot Password">Forgot Password</h3>
<div>
<p>
Please enter your email address below and we will send you information to change your password.
</p>
<label for="email"><b>Email</b></label>
<div>
<input type="text" placeholder="Enter email" name="email" required>
</div>
</div>
<button type="reset">Reset</button>
<div class="form-container forgot-return" style="display:none;">
<h3>
Reset Password Sent
</h3>
<p>
An email has been sent to your address with a reset password you can use to access your account.
</p>
</div>
</div>
</form>
<div class="footer-section">
<div style="margin: 30px;">
<div>
<h3>Contact Us</h3>
<p>
<span>block 6, 36 Adeboye Street, Lagos, Nigeria.</span><br>
<span>Support: +234814-7657436, +234701-4360123</span><br>
<span>mail to [email protected]</span><br>
<span>Lorem Ipsum</span>
</p>
</div>
<div>
<ul>
<li><a>About us</a></li>
<li><a>Features</a></li>
<li><a>TaxIt.ng Mobile</a></li>
</ul>
</div>
<div>
<ul>
<li><a>Pricing</a></li>
<li><a>Lorem and Lorem</a></li>
<li><a>Ipsum Lorem</a></li>
</ul>
</div>
<div>
<ul>
<li><a>Support and FAQs</a></li>
<li><a>Terms and Conditions</a></li>
<li><a>Privacy Policy</a></li>
<li><a>Lorem Ipsum</a></li>
</ul>
</div>
</div>
<hr style="margin:0px 50px;">
<div>
<p>Copyright © 2019 Team Helsinki. All Rights Reserved | TaxIt.ng is a platform designed & developed by Team Helsinki.</p>
</div>
</div>
</body>
</html>