Guest User

Untitled

a guest
Dec 11th, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <html>
  2.  
  3. <head>
  4. <title>Homepage</title>
  5. </head>
  6.  
  7. <body>
  8. <h1>Forms</h1>
  9.  
  10. <h2>Registro</h2>
  11. <form method="POST" action="teste.php?area=registro">
  12. Nome: <input type="text" name="user"><br />
  13. Senha: <input type="password" name="password">
  14. <input type="submit" id="register">
  15. </form>
  16.  
  17. <h2>Login</h2>
  18. <form method="POST" action="teste.php?area=login">
  19. Nome: <input type="text" name="user"><br />
  20. Senha: <input type="password" name="password">
  21. <input type="submit" id="login">
  22. </form>
  23.  
  24. <?php
  25. $estado=$_GET["area"];
  26.  
  27. if ($estado == "registro"){
  28. }
  29. if ($estado == "login"){
  30. }
  31. ?>
  32. </body>
  33.  
  34. </html>
Add Comment
Please, Sign In to add comment