2025-11-02 14:35:35 +03:00

86 lines
2.6 KiB
HTML

{% load i18n static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% trans "Page Not Found" %} - Agdar</title>
<link href="{% static 'css/vendor.min.css' %}" rel="stylesheet" />
<link href="{% static 'css/default/app.min.css' %}" rel="stylesheet" />
<style>
body {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.error-container {
text-align: center;
color: white;
padding: 40px;
}
.error-code {
font-size: 150px;
font-weight: bold;
line-height: 1;
margin-bottom: 20px;
text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.error-message {
font-size: 28px;
margin-bottom: 15px;
}
.error-description {
font-size: 18px;
margin-bottom: 40px;
opacity: 0.9;
}
.btn-home {
background: white;
color: #667eea;
padding: 15px 40px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
display: inline-block;
transition: all 0.3s;
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.btn-home:hover {
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(0,0,0,0.3);
color: #764ba2;
}
.icon-404 {
font-size: 100px;
margin-bottom: 30px;
animation: float 3s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
}
</style>
</head>
<body>
<div class="error-container">
<div class="icon-404">
<i class="fa fa-search"></i>
</div>
<div class="error-code">404</div>
<div class="error-message">{% trans "Page Not Found" %}</div>
<div class="error-description">
{% trans "The page you are looking for might have been removed, had its name changed, or is temporarily unavailable." %}
</div>
<a href="{% url 'dashboard' %}" class="btn-home">
<i class="fa fa-home me-2"></i>{% trans "Go to Dashboard" %}
</a>
</div>
</body>
</html>