Advertisement
mvsp

Aula 40 - index.php

Jul 6th, 2021
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.42 KB | None | 0 0
  1. <?php
  2. //Botão enviar
  3. if(isset($_POST['btn-entrar'])):
  4.     echo "Clicou";
  5. endif;
  6. ?>
  7.  
  8. <html>
  9. <head>
  10.     <title>Login</title>
  11.     <meta charset="utf8">
  12. </head>
  13. <body>
  14. <h1> Login </h1>
  15. <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method = "POST">
  16. Login: <input type="text" name="login"><br>
  17. Senha: <input type="password" name="senha"><br>
  18. <button type="submit" name="btn-entrar">Entrar </button>
  19. </form>
  20.  
  21. </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement