Files
Server_Monitorizare_v2/templates/errors/403.html
2026-04-23 15:55:46 +03:00

23 lines
972 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>403 - Forbidden</title>
<style>
body { font-family: Arial, sans-serif; text-align: center; padding: 50px; background-color: #f5f5f5; }
.error-container { max-width: 500px; margin: 0 auto; background: white; padding: 40px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
h1 { color: #e67e22; font-size: 72px; margin: 0; }
h2 { color: #333; margin: 20px 0; }
p { color: #666; line-height: 1.6; }
.back-link { display: inline-block; margin-top: 20px; padding: 10px 20px; background: #3498db; color: white; text-decoration: none; border-radius: 5px; }
.back-link:hover { background: #2980b9; }
</style>
</head>
<body>
<div class="error-container">
<h1>403</h1>
<h2>Forbidden</h2>
<p>You don't have permission to access this resource.</p>
<a href="/" class="back-link">← Back to Dashboard</a>
</div>
</body>
</html>