-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforgetPassword.php
More file actions
39 lines (32 loc) · 1.04 KB
/
forgetPassword.php
File metadata and controls
39 lines (32 loc) · 1.04 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
<?php
if(isset($_POST['id'])){
$email = $_POST['id'];
//$password = $_POST['Password'];
require 'connect.inc.php';
if(!empty($email)){
echo "password changed";
}
}
?>
<!-- Modal -->
<div class="modal fade" id="login" role="dialog">
<div class="modal-dialog"style="width:300px;height:400px;">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Forget Password</h4>
</div>
<div class="modal-body">
<form role="form"action="forgetPassword.php" id="login" method="POST" >
<div class="form-group">
<label for="email">User ID</label>
<input "type="email" id="email" name="id"class="form-control" placeholder="Enter Recovery Mail">
</div>
<button style="float:right;"type="submit" class="btn btn-lg btn-primary">Send Recovery Password</span></button>
</form>
</div>
<br><br>
</div>
</div>
</div>