19 lines
604 B
HTML
19 lines
604 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="pt-BR">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<title>Novo Militante</title>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<h1>Criar Novo Militante</h1>
|
||
|
|
<form method="post">
|
||
|
|
Nome: <input type="text" name="nome" required><br>
|
||
|
|
CPF: <input type="text" name="cpf" required><br>
|
||
|
|
Email: <input type="email" name="email" required><br>
|
||
|
|
Telefone: <input type="text" name="telefone"><br>
|
||
|
|
Endereço: <input type="text" name="endereco"><br>
|
||
|
|
Filiado: <input type="checkbox" name="filiado"><br>
|
||
|
|
<input type="submit" value="Criar">
|
||
|
|
</form>
|
||
|
|
</body>
|
||
|
|
</html>
|