-
Notifications
You must be signed in to change notification settings - Fork 2
/
change_password.php
38 lines (37 loc) · 1.69 KB
/
change_password.php
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
<?php include 'change_password_process.php' ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Change Password</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
</head>
<body>
<div class="container p-3 border border-5 rounded-3" style="width: 40%">
<h1 class="display-6 text-center p-2 bg-light">
Change Password
</h1>
<form action="" method="post">
<div class="row mb-3 justify-content-md-center">
<label for="inputEmail" class="col-4 col-form-label">Email</label>
<div class="col-lg-auto">
<input type="email" name="email" id="inputEmail" class="form-control" required>
</div>
</div>
<div class="row mb-3 justify-content-md-center">
<label for="inputPassword" class="col-4 col-form-label">New Password</label>
<div class="col-lg-auto">
<input type="password" name="new_password" id="inputPassword" class="form-control" required>
</div>
</div>
<div class="row mb-3 justify-content-md-center">
<div class="col-8">
<button type="submit" class="btn btn-primary" name="change">Change</button>
</div>
</div>
</form>
</div>
</body>
</html>