64 lines
1.6 KiB
HTML
64 lines
1.6 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="ru">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<title>Ошибка</title>
|
||
|
|
<style>
|
||
|
|
body {
|
||
|
|
font-family: Arial, sans-serif;
|
||
|
|
max-width: 800px;
|
||
|
|
margin: 0 auto;
|
||
|
|
padding: 20px;
|
||
|
|
background-color: #f5f5f5;
|
||
|
|
}
|
||
|
|
.container {
|
||
|
|
background: white;
|
||
|
|
padding: 30px;
|
||
|
|
border-radius: 10px;
|
||
|
|
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
.error-icon {
|
||
|
|
font-size: 48px;
|
||
|
|
color: #dc3545;
|
||
|
|
margin-bottom: 20px;
|
||
|
|
}
|
||
|
|
h1 {
|
||
|
|
color: #dc3545;
|
||
|
|
margin-bottom: 20px;
|
||
|
|
}
|
||
|
|
.error-message {
|
||
|
|
background-color: #f8d7da;
|
||
|
|
color: #721c24;
|
||
|
|
padding: 15px;
|
||
|
|
border-radius: 5px;
|
||
|
|
margin-bottom: 20px;
|
||
|
|
border: 1px solid #f5c6cb;
|
||
|
|
}
|
||
|
|
.back-link {
|
||
|
|
display: inline-block;
|
||
|
|
padding: 10px 20px;
|
||
|
|
background-color: #007bff;
|
||
|
|
color: white;
|
||
|
|
text-decoration: none;
|
||
|
|
border-radius: 5px;
|
||
|
|
}
|
||
|
|
.back-link:hover {
|
||
|
|
background-color: #0056b3;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div class="container">
|
||
|
|
<div class="error-icon">⚠️</div>
|
||
|
|
<h1>Произошла ошибка</h1>
|
||
|
|
<div class="error-message">
|
||
|
|
{{ error }}
|
||
|
|
</div>
|
||
|
|
<a href="/" class="back-link">Вернуться к поиску</a>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|
||
|
|
|