Advertisement
Guest User

FT-RPG

a guest
Jun 7th, 2016
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3.  
  4.  
  5. <HEAD>
  6. <TITLE>FT-RPG : Inscription</TITLE>
  7. </HEAD>
  8.  
  9. <body>
  10. <div class="block">
  11. <header> <h1 class="titre">FT-RPG : Inscription</h1>
  12. <ul class="menu">
  13. <il><a href="index.php">Accueil</a></il>
  14. <il><a href="connxion.php">Connexion</a></il>
  15. <il><a href="inscription.php">Inscription</a></il>
  16. <il><a href="forum.php">Forum</a></il>
  17.  
  18. </ul>
  19. </header>
  20. <body bgcolor="FFFFFF" background="http://www.popfixion.fr/upload/news/2015/03/20150311_095221Fairy-Tail.jpg"
  21. text="000000" link="FFFFFF" vlink="FFFFFF" BGproperties="fixed">
  22.  
  23. </body>
  24.  
  25.  
  26. <head>
  27.  
  28. </html>
  29.  
  30. <?php
  31. if(isset($_POST['submit']))
  32. {
  33. $username=htmlentities(trim($_POST['username']));
  34. $password=htmlentities(trim($_POST['password']));
  35. $repeatpassword=htmlentities(trim($_POST['repeatpassword']));
  36. if($username&&$password&&$repeatpassword)
  37. {
  38. }else echo"Veuillez remplir tous les champs";
  39.  
  40. ?>
  41.  
  42. <from method="POST" action="inscription.php"
  43. <p>Pseudo :</p>
  44. <input type="text" name="username">
  45. <p>Mot de passe</p>
  46. <input type="password" name="password">
  47. <p>Confirmer le mot de passe :</p>
  48. <input type="password" name="repeatpassword"><br><br>
  49. <input type="submit" value="S'inscrire" name="submit">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement