CMS ultra léger au style oldschool, projet de la communauté Kalaïn Hundin.

lost.php 743B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. session_start();
  3. require_once('config.php');
  4. $page_name='Password Forgotten';
  5. include_once('top.php');
  6. ?>
  7. <form action="lost2.php" name="recup" method="POST">
  8. <table width="300" border="0" align="center">
  9. <tr>
  10. <td colspan="2" class="menu">Lost Password</td>
  11. </tr>
  12. <tr>
  13. <td><label for="email">E-mail :</label></td>
  14. <td><input type="text" name="email" id="email" /></td>
  15. </tr>
  16. <tr>
  17. <td><label for="username">Username :</label></td>
  18. <td><input type="text" name="username" id="username" /></td>
  19. </tr>
  20. <tr>
  21. <td><div align="center"><input type="submit" name="Submit" value="Envoyer"></div></td>
  22. </tr>
  23. </table>
  24. </form>
  25. <div align="center"><a href="index.php">Back</a>
  26. </div>
  27. <?php
  28. include_once('bottom.php');
  29. ?>