-
Notifications
You must be signed in to change notification settings - Fork 0
/
forgot-password.html
129 lines (112 loc) · 3.87 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
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!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">
<title>Forgot Password | IWORDER</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="font-awesome/css/fontawesome-all.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="icon" href="img/favicon.jpg" type="image/jpg">
</head>
<body>
<!-- The top Nav Bar -->
<!-- This is the Nav that is displayed when user is not looged in -->
<nav class="main-nav navbar-fixed-top">
<div class="container">
<div class="row">
<div class="col-md-4 col-sm-4 col-xs-3"">
<a href="home.html" class="logo">
<img src="img/logob.jpg" alt="iWorder logo">
</a>
</div>
<div class="col-md-8 col-sm-8 col-xs-9 login">
<ul>
<li>
<a href="hub.html">
Explore
</a>
</li>
<li>
<a href="signup.html">
Sign Up
</a>
</li>
</ul>
</div>
</div>
</div>
</nav>
<section id="signup_page">
<div id="login-page-text" class="container">
<div class="row text-center">
<div class="col-md-12 col-xs-12 col-sm-12">
<p>
Connect and meet with new
<a href="home.html"><i>writers and poets</i></a> across
<span>
Africa.
</span>
</p>
</div>
</div>
</div>
<!-- Errors from Forgot Password Form are displayed here -->
<div class="errors container">
<div class="row text-center">
<div class="col-md-6 col-md-offset-3 col-sm-10 col-sm-offset-1 col-xs-12 col-xs-offset-0">
<!-- Positive Error Message -->
<div class="alert alert-success alert-dismissible" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>
<!-- Error Message Goes here -->
<i class="fas fa-check"></i> Check your inbox for instructions on how to reset your password
</div>
<!-- Negative Error Message -->
<div class="alert alert-danger alert-dismissible" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>
<!-- Error Message Goes here -->
<strong>Warning!</strong> There is no user with this Email address
</div>
</div>
</div>
</div>
<div id="login-form" class="container">
<div class="row text-center">
<div class="col-md-4 col-md-offset-4 col-sm-8 col-sm-offset-2 col-xs-12 col-xs-offset-0">
<div class="panel">
<div class="panel-body">
<h3 style="margin-bottom: 30px;">Forgot Password</h3>
<form action="/login" method="POST">
<div class="form-group" style="margin-bottom: 20px;">
<div class="input-group">
<span class="input-group-addon"><i class="far fa-envelope"></i></i></span>
<input name="email" type="email" class="form-control" placeholder="Email address" required>
</div>
</div>
<div class="form-group">
<button type="submit" class="btn btn-success form-control">Continue</button>
</div>
<div class="">
<p class="help-block">
Go back to <a href="login.html">Login</a>
</p>
</div>
</form>
</div>
</div>
<div id="form-footer">
<p class="login">
Not a worder? <a href="signup.html">Create an account</a>
</p>
<p class="copyright"><i class="far fa-copyright"></i> iWorder 2018</p>
</div>
</div>
</div>
</div>
</section><!-- End if login/ signup page -->
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>