-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchangepassword.php
More file actions
71 lines (66 loc) · 1.43 KB
/
changepassword.php
File metadata and controls
71 lines (66 loc) · 1.43 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
<!DOCTYPE html>
<html>
<title> Sign up at ShareStories</title>
<style>
.header {
padding: 10px 16px;
background: #FF3B3F;
}
input[type=text], select {
width: 45%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
input[type=password], select {
width: 45%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
input[type=submit] {
width: 45%;
background-color: #4CAF50;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
border-radius: 4px;
cursor: pointer;
}
input[type=submit]:hover {
background-color: #45a049;
}
form {
border-radius: 5px;
background-color: #FF3B3F;
padding: 20px;
width : 60%;
}
</style>
<body bgcolor= #A9A9A9>
<div class="header" id="myHeader"><center><img src="trlogo.png" height=130></center>
</div>
<br><br><br>
<center>
<div class="form">
<h1>Change your password</h1>
<form action="pchange.php">
<input type="password" id="currentpassword" name="currentpassword" placeholder="Enter Current Password">
<br>
<input type="password" id="newpassword" name="newpassword" placeholder="Enter New Password">
<br>
<input type="password" id="confirmpassword" name="confirmpassword" placeholder="Confirm new Password">
<br>
<input type="submit" value="Submit">
</form>
</div>
</center>
</body>
</html>