forked from TheGamesDB/TheGamesDB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tab_password.php
34 lines (26 loc) · 835 Bytes
/
tab_password.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
<div id="gameHead">
<?php if($errormessage): ?>
<div class="error"><?= $errormessage ?></div>
<?php endif; ?>
<?php if($message): ?>
<div class="message"><?= $message ?></div>
<?php endif; ?>
<div style="text-align: center; margin: 26px 0px;">
<h1>Reset Password</h1>
<p> </p>
<p>Please enter your email address below and we will send you a replacement password.</p>
<form action="<?=$fullurl?>" method="POST">
<div id="red"><?=$errormessage?></div>
<table cellspacing="2" cellpadding="2" border="0" align="center" style="text-align: left;">
<tr>
<td><b>Email Address</b></td>
<td><input type="text" name="email" value="<?=$email?>"></td>
</tr>
<tr>
<td></td>
<td><input type="submit" name="function" value="Reset Password"></td>
</tr>
</table>
</form>
</div>
</div>