-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsendpasswordreset.php
36 lines (33 loc) · 1.25 KB
/
sendpasswordreset.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
<?php
require 'lib/site.inc.php';
$view = new ProximityRacing\GeneralView();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php echo $view->presentHeader("Login | Proximity Racing"); ?>
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-TBKGS5L" height="0" width="0"
style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<div class="container">
<form class="form-signin" action="password-reset-token.php" method="post">
<button onclick="window.location.href = './';" type="button" class="btn btn-dark btn-sm">Back to
Home</button>
<br>
<h1 class="text-center">Reset Password</h1>
<br>
<br>
<p>
<label class="sr-only" for="newPassword">Enter Email</label>
<input name="email" type="email" placeholder="Enter Email" class="form-control" required autofocus
id="newPassword">
</p>
<button type="submit" name="password-reset-token" class="btn btn-primary btn-block">Send Password
Reset</button>
</form>
</div>
</body>
</html>