Skip to content

Instantly share code, notes, and snippets.

@philorocha
Created May 27, 2018 01:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save philorocha/04117d06bec7f75a59c7156add95241d to your computer and use it in GitHub Desktop.
Save philorocha/04117d06bec7f75a59c7156add95241d to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Cadastro de Usuário</title>
</head>
<body>
<form action="adicionar_usuario.php" method="post">
<label for="codigo">Código: </label><br/>
<input type="number" name="codigo" id="codigo" required><br/>
<label for="nome">Nome: </label><br/>
<input type="text" name="nome" id="nome" required><br/>
<label for="email">Email: </label><br/>
<input type="email" name="email" id="email" required><br/>
<label for="data_nasc">Data de Nascimento: </label><br/>
<input type="date" name="data_nasc" id="data_nasc"><br/><br/>
<button type="submit">Enviar</button>
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment