-
Notifications
You must be signed in to change notification settings - Fork 0
/
forgot.php
41 lines (37 loc) · 963 Bytes
/
forgot.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
<!-- Forgot Id page, sends a mail to the user to reset password -->
<?php
session_start();
?>
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/forgot.css">
<link rel="stylesheet" href="css/menu.css">
<meta name="viewport" content="width=device-width, user-scalable=yes" />
<link rel="stylesheet" href="fonts/css/font-awesome.min.css">
<title>Camagru</title>
</head>
<body>
<?php
$rootname = getcwd();
require_once($rootname.'/nav/menu.php');
menu();
?>
<div id="redirect">
<p id="message"> Please enter your Username or Email </p>
<form id="decathlon" method="post">
<input id="username" type="text" placeholder="Username or Email">
<div id="submit">
<a href="#"><p>Submit</p>
</div></a>
</form>
</div>
</body>
<script type="text/javascript" src="javascript/forgot.js"></script>
<?php
$rootname = getcwd();
require_once($rootname.'/script/script.php');
script();
?>
</html>