Files
Rendiciones-App/templates/base.html
SekiDesu0 9692f7dd32 new file: app.py
new file:   rendiciones.db
	new file:   templates/admin_productos.html
	new file:   templates/admin_rendicion_detail.html
	new file:   templates/admin_rendiciones.html
	new file:   templates/admin_structure.html
	new file:   templates/admin_workers.html
	new file:   templates/base.html
	new file:   templates/edit_producto.html
	new file:   templates/edit_worker.html
	new file:   templates/login.html
	new file:   templates/navbar.html
	new file:   templates/worker_dashboard.html
2026-03-18 21:15:26 -03:00

19 lines
572 B
HTML

<!DOCTYPE html>
<html lang="es" data-bs-theme="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sistema de Rendiciones</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
{% include 'navbar.html' %}
<div class="container">
{% block content %}{% endblock %}
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>