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

register.php 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Register</title>
  5. </head>
  6. <body>
  7. <section>
  8. <?php
  9. require_once('config.php');
  10. $page_name='Register';
  11. include_once('top.php');
  12. ?><form method='post' action='verification.php' enctype='multipart/form-data'>
  13. <table width="400" border="0" align="center">
  14. <tr>
  15. <td colspan="2"><h2>Register</h2></td>
  16. </tr>
  17. <tr>
  18. <td><label for="username">Username : </label></td>
  19. <td><input name="username" type="text" id="username" /></td>
  20. </tr>
  21. <tr>
  22. <td><label for="email">E-mail : </label></td>
  23. <td><input name="email" type="text" id="email" /></td>
  24. </tr>
  25. <tr>
  26. <td><label for="passwd">Password : </label></td>
  27. <td><input name="passwd" type="password" id="passwd" /></td>
  28. </tr>
  29. <tr>
  30. <td><label for="passwd2">Password Confirmation: </label></td>
  31. <td><input name="passwd2" type="password" id="passwd2" /></td>
  32. </tr>
  33. <tr>
  34. <td><div align="center"><input type="submit" value="GO!" /></div></td>
  35. </tr>
  36. </table>
  37. </form>
  38. </div>
  39. <center><a href="index.php">Back</a></center>
  40. <?php
  41. include_once('bottom.php');
  42. ?>
  43. </section>
  44. </center>
  45. </body>
  46. </html>