You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
107 lines
3.7 KiB
107 lines
3.7 KiB
<!DOCTYPE html>
|
|
<html lang="es">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{% block title %}Registro de presupuestos{% endblock %}</title>
|
|
|
|
<!-- Bootstrap y FontAwesome -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" rel="stylesheet">
|
|
|
|
<style>
|
|
/* Estilos personalizados */
|
|
.navbar {
|
|
background-color: #5bc0de; /* Azul más claro */
|
|
}
|
|
.navbar-brand {
|
|
font-size: 1.5rem;
|
|
font-weight: bold;
|
|
}
|
|
.nav-link {
|
|
font-size: 1.1rem;
|
|
font-weight: 500;
|
|
}
|
|
.nav-link:hover {
|
|
color: #fff !important;
|
|
}
|
|
.container {
|
|
min-height: 80vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.content {
|
|
flex: 1;
|
|
}
|
|
.footer {
|
|
background-color: #5bc0de;
|
|
color: white;
|
|
padding: 1rem;
|
|
text-align: center;
|
|
font-weight: 500;
|
|
margin-top: auto;
|
|
}
|
|
.btn-primary {
|
|
background-color: #007bff;
|
|
border-color: #007bff;
|
|
}
|
|
.btn-secondary {
|
|
background-color: #6c757d;
|
|
border-color: #6c757d;
|
|
}
|
|
.btn-outline-light {
|
|
border-color: #fff;
|
|
color: #fff;
|
|
}
|
|
.btn-outline-light:hover {
|
|
background-color: rgba(255, 255, 255, 0.2);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<!-- Navbar -->
|
|
<nav class="navbar navbar-expand-lg navbar-dark">
|
|
<div class="container-fluid">
|
|
<a class="navbar-brand">Registro de presupuestos</a>
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<div class="collapse navbar-collapse" id="navbarNav">
|
|
<ul class="navbar-nav ms-auto">
|
|
{% if user.is_authenticated %}
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="{% url 'lista_cuentas' %}">
|
|
<i class="fas fa-user-plus"></i> Nueva Cuenta
|
|
</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link btn btn-outline-light px-3 py-1 rounded-pill" href="{% url 'signout' %}">
|
|
<i class="fas fa-sign-out-alt"></i> Cerrar Sesión
|
|
</a>
|
|
</li>
|
|
{% else %}
|
|
<li class="nav-item">
|
|
<a class="nav-link btn btn-outline-light px-3 py-1 rounded-pill" href="{% url 'signin' %}">
|
|
<i class="fas fa-sign-in-alt"></i> Iniciar Sesión
|
|
</a>
|
|
</li>
|
|
{% endif %}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- Contenido principal -->
|
|
<div class="container mt-4 content">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
|
|
<!-- Footer -->
|
|
<footer class="footer">
|
|
<p>© 2025 Registro de presupuestos | Todos los derechos reservados</p>
|
|
</footer>
|
|
|
|
<!-- Scripts Bootstrap -->
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
</html> |