forked from ColinMitchellGit/ContactHub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforgotPassword.html
59 lines (52 loc) · 2.43 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
<!doctype html>
<html lang="en">
<head>
<title>Login 10</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/styleLogin.css">
</head>
<body class="img js-fullheight" style="background-image: url(images/bluemountain.jpg);">
<div class="w-50 text-md-left" style="padding-left: 20px; padding-top: 10px;">
<a class="txt1" href="index.html">
<i class="fa fa-long-arrow-left"></i>
Back to login
</a>
</div>
<section class="ftco-section">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-6 col-lg-4">
<div class="login-wrap p-0">
<h3 class="mb-4 text-center">Forgot Password</h3>
<form action="#" class="signin-form">
<div class="mb-3">
<label class="form-label required">Username</label>
<input id="verifyUser" type="text" placeholder="Username" class="form-control">
</div>
<div class="mb-3">
<label class="form-label required">Question 1: What's your first pet's name?</label>
<input id="verifySecQ1" type="text" placeholder="Answer" class="form-control">
</div>
<div class="mb-3">
<label class="form-label required">Question 2: What city was your mother born in?</label>
<input id="verifySecQ2" type="text" placeholder="Answer" class="form-control">
</div>
<div class="form-group">
<button type="button" class="form-control btn btn-primary submit px-3" onclick="doForgot();">Reset Password</button>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<script src="js/jquery.min.js"></script>
<script src="js/popper.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/mainLogin.js"></script>
<script src="main.js"></script>
</body>
</html>