This commit is contained in:
2025-06-04 10:33:01 -06:00
parent 04ae185504
commit 3a01c24bf5
51 changed files with 1197 additions and 2765 deletions

View File

@@ -14,67 +14,19 @@ $mensajeMantenimiento = $config['mensaje_mantenimiento'] ?? 'El sistema se encue
<meta charset="UTF-8">
<title><?= htmlspecialchars($siglas) ?> | Recuperación de Contraseña</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" rel="stylesheet">
<style>
body {
background-color: #f4f6f9;
font-family: 'Segoe UI', sans-serif;
position: relative;
height: 100vh;
}
.navbar {
background-color: #fff;
}
.navbar .nav-link, .navbar-brand {
color: <?= $color1 ?> !important;
font-weight: 500;
}
.logo-siih {
height: 90px;
margin-right: 10px;
}
.login-container {
max-width: 420px;
margin: 80px auto;
background: white;
padding: 40px;
border-radius: 12px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
z-index: 10;
position: relative;
}
.form-control {
border-radius: 6px;
}
footer {
background-color: #e9ecef;
padding: 20px;
text-align: center;
font-size: 14px;
color: #666;
margin-top: 60px;
}
body { background-color: #f4f6f9; font-family: 'Segoe UI', sans-serif; position: relative; height: 100vh; }
.navbar { background-color: #fff; }
.navbar .nav-link, .navbar-brand { color: <?= $color1 ?> !important; font-weight: 500; }
.logo-siih { height: 90px; margin-right: 10px; }
.login-container { max-width: 420px; margin: 80px auto; background: white; padding: 40px; border-radius: 12px; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); z-index: 10; position: relative; }
.form-control { border-radius: 6px; }
footer { background-color: #e9ecef; padding: 20px; text-align: center; font-size: 14px; color: #666; margin-top: 60px; }
/* Contenedor de fondo semitransparente para las vistas */
.overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
z-index: 5;
}
.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); z-index: 5; }
</style>
</head>
<body>