-
Notifications
You must be signed in to change notification settings - Fork 2
/
forgetPass.php
53 lines (32 loc) · 1.06 KB
/
forgetPass.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>RETURN_ZERO</title>
<?php include 'forgetpassprocess.php';?>
<link type="text/css" rel="stylesheet" href="forgetpasssty.css">
<link type="text/css" rel="stylesheet" href="navsty.css">
</head>
<body>
<header>
<a id="logo" href="#">OP</a>
<nav>
<ul>
<li><a href="index.php">Home</a></li>
<li><a href="login.php">LOGIN</a></li>
<li><a href="register.php">REGISTRATION</a></li>
</ul>
</nav>
</header>
<div class='wrap'>
FORGET PASSWORD
<br><br>
<form method="post" action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]);?>" >
<span class="error"> <?php echo $DB_error; ?></span>
<span class="error"> <?php echo $Email_error;?></span>
<input placeholder="Email ex:{[email protected]}" name="Email" value="<?php echo $Email; ?>" type="text" />
<button type="submit" data-submit="...Sending">SEND</button>
</form>
</div>
</body>
</html>