-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforgot_password.php
More file actions
28 lines (27 loc) · 1.06 KB
/
forgot_password.php
File metadata and controls
28 lines (27 loc) · 1.06 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
<?php require_once 'init.php'; ?>
<html>
<head>
<title>Pokésearch | Forgot Your Password</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/login.css">
<?php require_once 'layouts/favicon.php'; ?>
</head>
<body>
<?php require_once 'layouts/mininav.php'; ?>
<div class="content">
<?php require_once 'layouts/header.php'; ?>
<h1>Forgot your password?</h1>
<div class="input-box">
<p>Enter your username or email below and a password reset link will
be sent to you in a few minutes.</p>
<br>
<p><b>Note: The link will expire in 15 minutes.</b></p>
<form method="post" action="">
<input class="textbox" type="text" name="username" placeholder="Email/Username"/>
<input class="button" type="submit" value="Submit"/>
</form>
</div>
</div>
<?php require_once 'layouts/footer.php'; ?>
</body>
</html>