-
Notifications
You must be signed in to change notification settings - Fork 0
/
change password.html
46 lines (45 loc) · 2.03 KB
/
change password.html
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
<!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>staff login</title>
<link rel="stylesheet" href="asset/css/dash.css">
<link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css">
</head>
<body>
<section >
<div >
<div>
<div class="addpatient" style="position: absolute; top: 0; z-index: 10;" >
<form action="" class="crtact" >
<h1>CHANGE password</h1>
<div class="column">
<div class="row">
<label for="oldpswrd">OLD password:</label>
<input type="password" id="oldpswrd" name="oldpassword" placeholder="enter old password..." required>
</div>
<div>
<p style="color: red; font-size: 10px; margin: 10px;">please enter the correct password</p>
</div>
<div class="row">
<label for="pswrd">NEW password:</label>
<input type="password" id="newpswrd" name="newpswrd" placeholder="enter new password..." required>
</div>
<div class="row">
<label for="pswrd">CONFIRM password:</label>
<input type="password" id="confpswrd" name="confpswrd" placeholder="CONFIRM password..." required>
</div>
<div>
<p style="color: red; font-size: 10px; margin: 10px;">please confirm the password</p>
</div>
<button>CHANGE</button>
</div>
</form>
</div>
</div>
</section>
</body>
</html>