-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpassword-update.php
More file actions
25 lines (24 loc) · 870 Bytes
/
Copy pathpassword-update.php
File metadata and controls
25 lines (24 loc) · 870 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
<?php
include 'header.php';
?>
<div class="container" style="text-align: center" >
<br><br><br>
<form >
<div class"form-group" >
<input type="password" class="form-control" id="passwordUpdate1" placeholder="Enter new password" style="width:400px; margin: auto">
</div>
<br>
<div class"form-group" >
<input type="password" class="form-control" id="passwordUpdate2" placeholder="Confirm your new password" style="width:400px; margin: auto">
</div>
<input type="hidden" name="email" id="email" value="<?php echo $email;?>" >
<br>
<button type="button" id="resetBtn" class="btn btn-primary">Set New Password</button>
</form>
<br>
<div class="alert alert-success" id="status" style="width:400px; margin: auto; display: none"></div>
</div>
<br><br><br><br><br><br><br><br><br>
<?php
include 'footer.php';
?>