-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathchangepass.php
36 lines (24 loc) · 916 Bytes
/
changepass.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>FuckMailBox</title>
<?php include 'changepassprocess.php';?>
<link type="text/css" rel="stylesheet" href="changepasssty.css">
<link type="text/css" rel="stylesheet" href="navsty.css">
</head>
<body>
<div class='wrap'>
CHANGE PASSWORD
<br><br>
<form method="post" action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]);?>" >
<span class="error"> <?php echo $DB_error; ?></span>
<input placeholder="Password" name="Password" type="password" />
<span class="error"> <?php echo $password_error; ?> </span>
<input placeholder="RePassword" name="Repassword" type="password" />
<span class="error"> <?php echo $Repassword_error; ?> </span>
<button type="submit" data-submit="...Sending">REGISTER</button>
</form>
</div>
</body>
</html>