-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlostpassword.php
38 lines (32 loc) · 961 Bytes
/
lostpassword.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
<?php
$open = true;
require 'lib/site.inc.php';
$view = new Felis\LoginView($_SESSION, $_GET);
$view->setTitle('Felis Investigations');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php echo $view->head(); ?>
</head>
<body>
<div class="login">
<?php echo $view->header(); ?>
<form method="post" action="post/lostpassword.php">
<fieldset>
<legend>Enter your email to reset your password.</legend>
<p>
<label for="email">Email: </label><br>
<input type="email" id="email" name="email" placeholder="Email">
</p>
<p>
<input type="submit" id="ok" name="ok" value="OK">
<input type="submit" id="cancel" name="cancel" value="Cancel">
</p>
<p><a href="./">Felis Agency Home</a></p>
</fieldset>
</form>
<?php echo $view->footer(); ?>
</div>
</body>
</html>