Files
controles/templates/novo_militante.html

20 lines
649 B
HTML
Raw Normal View History

<!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>
2025-01-08 00:19:49 -03:00
<a href="{{ url_for('home') }}">Home</a>
</body>
</html>