-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforgot-password.php
More file actions
88 lines (74 loc) · 2.87 KB
/
forgot-password.php
File metadata and controls
88 lines (74 loc) · 2.87 KB
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
<?php
session_start();
include_once("php_functions/functions.php");
include_once("configs/conn.inc");
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="assets/plugins/highlightjs/styles/monokai-sublime.min.css">
<title> Zidi : Forgot Password</title>
<style type="text/css">
</style>
<!-- Bootstrap Core and vendor -->
<?php
include_once 'styles.php';
?>
</head>
<body class="font-opensans">
<!-- Page Loader -->
<div class="page-loader-wrapper">
<div class="loader">
</div>
</div>
<!--Header section -->
<?php
include_once 'header.php';
?>
<!-- start main body part-->
<div class="container-fluid page-top-margin" id="forgotpwd-page">
<div class="row">
<div class="col-md-4 offset-md-4 card pt-4 pb-3 mt-3 mb-3 border border-info">
<div class="d-flex justify-content-center">
<!-- <h3 class="masthead-heading text-uppercase mb-0">
<a href="index"><img src="assets/images/logo.png" height="40px" alt="ZIDI" /></a>
</h3> -->
</div>
<h4 class="text-center pt-2 pb-2">Request Reset Link</h4>
<form class="pl-5 pr-5" method="POST" onsubmit="return false;">
<div class="form-group">
<label for="email_input">Please provide email you registered with: </label>
<input type="email" class="form-control" id="email_input" placeholder="Email" required>
<div class="error" id="emailErr"></div>
</div>
<div class="form-group" id="forgotPwdBtn">
<!-- <button type="submit" title="Click to Submit" onclick="forgotPassword()" class="btn btn-primary">Submit</button> -->
</div>
<div class="form-group" style="text-align: start;">
<p>Remember password? <a class="a-override" href="login">Login</a></p>
</div>
</form>
</div>
</div>
<div class="fixed-bottom">
<?php
include_once 'footer.php';
?>
</div>
</div>
<!-- jQuery and bootstrtap js -->
<?php
include_once('scripts.php');
?>
<script>
$(document).ready(function() {
updateHeader("forgotpwd-page"); //check for logged in user so as to update the header accordingly
footer_date(); //load footer
//initialize submit button
submitBtn("#forgotPwdBtn", "forgotPwdValidateForm()", "Click to request password reset link");
});
</script>
</body>
</html>