19 lines
885 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// views/errors/403.php
?>
<!DOCTYPE html>
<html lang="es">
<head><meta charset="UTF-8"><title>Acceso Denegado</title>
<link rel="stylesheet" href="<?= APP_URL ?>/assets/css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
</head>
<body style="display:grid;place-items:center;min-height:100vh;background:var(--bg)">
<div style="text-align:center;padding:2rem">
<div style="font-size:5rem;margin-bottom:1rem;opacity:.3"><i class="fa-solid fa-lock"></i></div>
<h1 style="font-size:2rem;font-weight:800;margin-bottom:.5rem">403 Acceso Denegado</h1>
<p style="color:var(--text-muted);margin-bottom:1.5rem">No tienes permisos para acceder a esta sección.</p>
<a href="<?= APP_URL ?>/dashboard.php" class="btn btn-primary"><i class="fa-solid fa-house"></i> Volver al Dashboard</a>
</div>
</body>
</html>