Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel="stylesheet" href="style.css">
- <link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
- <title>CADASTRO</title>
- </style>
- </head>
- <body>
- <h1>CADASTRO DE USUÁRIO</h1>
- <form action="cadastro.php" method="POST" name="cadastro" id="cadastro">
- <fieldset>
- <legend>CADASTRO</legend>
- <label for="nome">NOME: </label>
- <input type="text" name="nome" id="nome" placeholder="Digite o Nome de usuário" maxlength="32" minlength="8" required><br><br>
- <label for="email">EMAIL: </label>
- <input type="email" name="email" id="email" placeholder="Digite o seu email" maxlength="32" minlength="8" required><br><br>
- <label for="senha">SENHA: </label>
- <input type="password" name="senha" id="senha" placeholder="Digite uma senha" maxlength="32" minlength="6" required><br><br>
- <input type="submit" value="CADASTRAR" class="s">
- </fieldset>
- </form>
- <button><a href="login.html">LOGIN</a></button>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment