-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreset_password.php
More file actions
71 lines (67 loc) · 2.4 KB
/
Copy pathreset_password.php
File metadata and controls
71 lines (67 loc) · 2.4 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
<?php
include('functions.php');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="description" content="website description" />
<meta name="keywords" content="website keywords, website keywords" />
<meta http-equiv="content-type" content="text/html; charset=windows-1252" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="stylesheet" type="text/css" href="css/button.css" />
<script src="https://kit.fontawesome.com/bf523026c9.js" crossorigin="anonymous"></script>
<link rel="shortcut icon" type="image/x-icon" href="img/logo.ico" />
</head>
<body>
<div id="main">
<div id="header">
<div id="logo">
<div class="logo_img">
<img src="img/logo.png" alt="NPS Logo" height="auto" width="13%"></img>
<div id="logo_text">
<!-- class="logo_colour", allows you to change the colour of the text -->
<h1><a class="logo_colour" href="../index.php">CrimeSTOPPERS</a></h1>
<h2>National Police Service</h2>
</div>
</div>
</div>
</div>
<div id="navbar">
<nav>
<ul id="menu">
<li><a href="index.php">Home</a></li>
<li><a href="anonymous/anonymous.php">Report</a></li>
<li class="selected"><a href="login.php">Login</a></li>
<li><a href="register.php">Register</a></li>
<li style="float: right;"><a href="contact_us/contact.php"><i class="fa fa-phone"></i>
Contact Us</a></li>
</ul>
</nav>
</div>
</div>
<section class="login_form">
<form method="post" action="reset_password.php">
<figure>
<img src="img/login_avatar.png" alt="Avatar" class="avatar">
</figure>
<?php
echo display_error(); ?>
<section class="inputs">
<label for="email">email</label>
<input type="email" name="email" placeholder="email" required>
<label for="password_1">Password</label>
<input type="password" name="password_1" required>
<label for="password_2">Confirm password</label>
<input type="password" name="password_2" required>
</section>
<button type="submit" class="submit" name="reset" style="width: 100%">reset</button>
</form>
</section>
</div>
<div id="footer">
<p>Copyright © Rivine <?php echo date("Y"); ?> All Rights Reserved.</p>
</div>
<!-- JAVASCRIPTS -->
<script type="text/javascript" src="js/_crime.js"></script>
</body>
</html>