-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathforgot_password.php
More file actions
32 lines (27 loc) · 827 Bytes
/
forgot_password.php
File metadata and controls
32 lines (27 loc) · 827 Bytes
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
<?php
$title = "forgot password";
include_once 'header.php';
?>
<!-- <script type='text/javascript'>
function displayMsg() {
var regExpName = /^[a-zA-Z]*$/;
var regExpUserName = /^[a-zA-Z0-9]*$/;
var validity;
if (document.forms['forgot_pw']['email'].value == "") {}
var message = document.getElementById('displayMsg');
message.style.color = 'red';
message.innerHTML = 'Please check your email';
}
</script> -->
<section>
<div id="displayMsg">
<p>Check your email after requesting for reset password link</p>
</div>
<form name="forgot_pw" method="post" action="process/forgot_password_process.php">
<input type="email" name="email" placeholder="you@example.com">
<input type="submit" name="forgot_password" value="Send Email">
</form>
</section>
<?php
include_once 'footer.php';
?>