guestMatheus

PÁGINA HTML

Jul 26th, 2020
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.22 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <link rel="stylesheet" href="style.css">
  7.     <link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
  8.     <title>CADASTRO</title>
  9.     </style>
  10. </head>
  11. <body>
  12.     <h1>CADASTRO DE USUÁRIO</h1>
  13.     <form action="cadastro.php" method="POST" name="cadastro" id="cadastro">
  14.         <fieldset>
  15.             <legend>CADASTRO</legend>
  16.             <label for="nome">NOME: </label>
  17.             <input type="text" name="nome" id="nome" placeholder="Digite o Nome de usuário" maxlength="32" minlength="8" required><br><br>
  18.             <label for="email">EMAIL: </label>
  19.             <input type="email" name="email" id="email" placeholder="Digite o seu email" maxlength="32" minlength="8" required><br><br>
  20.             <label for="senha">SENHA: </label>
  21.             <input type="password" name="senha" id="senha" placeholder="Digite uma senha" maxlength="32" minlength="6" required><br><br>
  22.             <input type="submit" value="CADASTRAR" class="s">
  23.         </fieldset>
  24.     </form>
  25.     <button><a href="login.html">LOGIN</a></button>
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment