-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchange_password.php
More file actions
75 lines (70 loc) · 3.52 KB
/
change_password.php
File metadata and controls
75 lines (70 loc) · 3.52 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
<?php
require_once "php/auth.php";
?>
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Add New Customer</title>
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<script src="bootstrap/js/jquery.min.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<link rel="shortcut icon" href="" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/sidenav.css">
<link rel="stylesheet" href="css/home.css">
<script src="js/validateForm.js"></script>
<script src="js/my_profile.js"></script>
<script src="js/restrict.js"></script>
</head>
<body>
<!-- including side navigations -->
<?php include("sections/sidenav.html"); ?>
<div class="container-fluid">
<div class="container">
<!-- header section -->
<?php
require "php/header.php";
createHeader('key', 'Change Passowrd', 'Set New Password');
// header section end
?>
<div class="row">
<div class="row col col-md-6">
<div class="row col col-md-12">
<div class="col col-md-12 form-group">
<label class="font-weight-bold" for="old_password">Old Password :</label>
<input id="old_password" type="text" class="form-control" placeholder="old password" onblur="checkAdminPassword(this.value, 'old_password_error');">
<code class="text-danger small font-weight-bold float-right mb-2" id="old_password_error" style="display: none;"></code>
</div>
</div>
<div class="row col col-md-12">
<div class="col col-md-12 form-group">
<label class="font-weight-bold" for="password">New Password :</label>
<input id="password" type="text" class="form-control" placeholder="password" style="max-height: 100px;">
<code class="text-danger small font-weight-bold float-right mb-2" id="password_error" style="display: none;"></code>
</div>
</div>
<div class="row col col-md-12">
<div class="col col-md-12 form-group">
<label class="font-weight-bold" for="confirm_password">Confirm New Password :</label>
<input id="confirm_password" type="password" class="form-control" placeholder="confirm password">
<code class="text-danger small font-weight-bold float-right mb-2" id="confirm_password_error" style="display: none;"></code>
</div>
</div>
<div class="row col col-md-12 m-auto" id="change">
<div class="col col-md-4 form-group float-right"></div>
<div id="change_button" class="col col-md-4 form-group float-right">
<button class="btn btn-warning form-control font-weight-bold" onclick="changePassword();">Reset Password</button>
</div>
<div id="password_button" class="col col-md-4 form-group float-right">
<a href="my_profile.php" class="btn btn-primary form-control font-weight-bold">Profile</a>
</div>
</div>
</div>
</div>
<hr style="border-top: 2px solid #ff5252;">
</div>
</div>
</body>
</html>