-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpasswordReset.php
33 lines (33 loc) · 1012 Bytes
/
passwordReset.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
<?php
$title = "mountaineeringstats | Wilkommen";
include 'header.php';
include 'db.php';
?>
<div class="startBackground">
<div class="outer">
<div class="middle">
<div class="inner">
<h1 class="start">Mountaineeringstats</h1>
<h1 class="start">Passwort vergessen</h1>
<div id="error">
<?php
if(isset($_SESSION['error'])){
/**
* display form error from previous try
*/
echo $_SESSION['error'];
}
?>
</div>
<form action= "includes/passwordReset.inc.php" method="post">
<input class="start" type="email" name="email" placeholder="E-Mail"><br>
<!--<input type="checkbox" name="remember" value="remmber"><label>Angemeldet bleiben</label><br>-->
<input class="start" type="submit" name="reset" value="Passwort zurücksetzen"><br><br>
</form>
</div>
</div>
</div>
</div>
<?php
include 'footerStart.php';
?>