-
Notifications
You must be signed in to change notification settings - Fork 52
/
forgotpassword.html
37 lines (28 loc) · 1.34 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
<!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">
<title>Forgot Password</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="icon" type="img/png" href="images/favicon.png">
<link href="https://fonts.googleapis.com/css?family=Nunito&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles/forgotpassword.css">
</head>
<body>
<div class="container mx-auto text-center mt-5 form-container">
<h1 class="display-4 heading">Forgot Password</h1>
<p>New to WikiPoli? <a href="#" id="signup-link">Sign up</a></p>
<form method="post" id="forgot-form">
<div class="form-group mx-auto mt-3">
<input type="text" name="email" id="forgotemail" class="form-control form-control-lg"
placeholder="Your Email Address" required>
<input type="submit" name="submit" id="submit" value="Recover Password" class="btn btn-lg btn-primary btn-blue btn-block mt-3">
</div>
</form>
<br>
</div>
</body>
</html>