passei os frontends pra bootstrap-flask

This commit is contained in:
LS
2025-02-19 14:27:14 -03:00
parent eff8c531d7
commit 765688df1f
19 changed files with 205 additions and 162 deletions

View File

@@ -1,10 +1,8 @@
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<title>Novo Militante</title>
</head>
<body>
{% extends 'base.html' %}
{% block title %}Listar Militantes{% endblock %}
{% block content %}
<h1>Criar Novo Militante</h1>
<form method="post">
Nome: <input type="text" name="nome" required><br>
@@ -16,5 +14,6 @@
<input type="submit" value="Criar">
</form>
<a href="{{ url_for('home') }}">Home</a>
</body>
</html>
{% endblock %}