2025-02-19 14:27:14 -03:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
|
|
|
|
|
|
{% block title %}Listar Militantes{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
2024-11-26 10:57:25 -03:00
|
|
|
<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>
|
2025-02-19 14:27:14 -03:00
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|