12345678910111213141516171819202122232425262728293031 |
- <?php
-
- session_start();
- require_once('config.php');
- $page_name='Password Forgotten';
- include_once('top.php');
-
- ?>
- <form action="lost2.php" name="recup" method="POST">
- <table width="300" border="0" align="center">
- <tr>
- <td colspan="2" class="menu">Lost Password</td>
- </tr>
- <tr>
- <td><label for="email">E-mail :</label></td>
- <td><input type="text" name="email" id="email" /></td>
- </tr>
- <tr>
- <td><label for="username">Username :</label></td>
- <td><input type="text" name="username" id="username" /></td>
- </tr>
- <tr>
- <td><div align="center"><input type="submit" name="Submit" value="Envoyer"></div></td>
- </tr>
- </table>
- </form>
- <div align="center"><a href="index.php">Back</a>
- </div>
- <?php
- include_once('bottom.php');
- ?>
|