-
Notifications
You must be signed in to change notification settings - Fork 0
/
forgot_password.html
60 lines (57 loc) · 2.07 KB
/
forgot_password.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Forgot my Password</title>
<!-- <Bootsarap> -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/main.css">
</head>
<body>
<!-- Navigation bar -->
<nav class="navbar navbar-inverse navigation">
<div class="container-fluid">
<div class="navbar-neader">
<a class="navbar-brand" href="login.html">Tech Bang</a>
</div>
<!-- sign up button -->
<ul class="nav navbar-nav navbar-right">
<li><a href="signup.html">Sign up</a></li>
</ul>
<!-- sign in button -->
<ul class="nav navbar-nav navbar-right">
<li><a href="login.html">Log in</a></li>
</ul>
</div>
</nav>
<!-- Sign in Section-->
<section class="container-fluid">
<div class="col-md-12">
<center>
<div class="login_form_wrapper">
<form class="form">
<p>
<p>Enter the email you registerd with</p><br>
Email<br>
<input type="text" maxlength="100" name="email" placeholder="Enter Email" height="100" required class="input">
</p>
<div class="input-box">
<a href="login.html" class="btn btn-primary btn-lg">Log me in</a>
</div>
</form>
</div>
</center>
</div>
</section>
<!-- Footer -->
<footer class="container-fluid footer">
<center>
<h6>2016 Tech Bang Ltd. All Rights Reserved © . Designed by Emeka Nwachukwu (aka - brist)</h6>
</center>
</footer>
<!-- JQuery -->
<script src="assets/js/jquery.min.js"></script>
<!-- Bootstrap Query -->
<script src="assets/js/bootstrap.min.js"></script>
</body>
</html>