-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathforgot-password.html
61 lines (46 loc) · 1.61 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
<!doctype html>
<html lang="en">
<head>
<?php
$title = "Forgot Password";
include("./inc/common-head.html");
?>
</head>
<body class="skin-blue sidebar-mini">
<!-- <Start Of Header Section> -->
<!-- <End Of Body Section> -->
<!-- Javascript Start Here -->
<script src="assets/js/plugin/jquery/jquery.min.js"></script>
<script src="assets/js/plugin/popper.min.js"></script>
<script src="assets/js/plugin/bootstrap.min.js"></script>
<script src="assets/js/plugin/adminlte.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.4.0/Chart.min.js"></script>
<script src="assets/js/app.js"></script>
<!-- Javascript End Here -->
<div class="log-in">
<div class="container-login">
<div class="wrap-login">
<form class="login-form validate-form">
<span class="login-form-title p-b-48">
<img src="assets/images/mobio-logoaa.png">
</span>
<div class="log-head">
<h2>Forgot PassWord</h2>
</div>
<div class="wrap-input validate-input" data-validate = "Valid email is: [email protected]">
<input type="email" class="form-control" id="email" placeholder="Enter Email" name="email">
</div>
<div class="container-login-form-btn">
<div class="wrap-login-form-btn">
<div class="login-form-bgbtn"></div>
<button class="login-form-btn">
<a href="index.html">Submit</a>
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</body>
</html>