-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathchange-password.php
More file actions
37 lines (30 loc) · 1.34 KB
/
change-password.php
File metadata and controls
37 lines (30 loc) · 1.34 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
<?php
$body_id = 'changepassword';
?>
<?php require_once('header.php'); ?>
<div class="white_bg padding-page">
<div class="container">
<div class="col-xs-12 col-md-5 col-sm-7 col-centered">
<p class="error_msg"></p>
<p class="success_msg"></p>
<div class="login_box">
<div class="title">Change Password</div>
<form method="post" action="" id="changepasswordform" onsubmit="return validateChangePassword();">
<div class="form-group">
<input type="password" class="form-control" id="old_password" name="old_password" placeholder="Old Password">
</div>
<div class="form-group">
<input type="password" class="form-control" id="new_password" name="new_password" placeholder="New Password">
</div>
<div class="form-group">
<input type="password" class="form-control" id="con_new_password" name="con_new_password" placeholder="Confirm New Password">
</div>
<div class="submit">
<button class="btn btn-default" title="Login" type="submit" name="si_submit" id="si_submit">Submit</button>
</div>
</form>
</div>
</div>
</div>
</div>
<?php require_once('footer.php'); ?>