Files
sst_site/.history/views/admin/error_20251022051635.ejs
2025-10-22 21:22:44 +09:00

23 lines
920 B
Plaintext

<%- include('layout', { title: title, user: user }) %>
<div class="max-w-lg mx-auto text-center">
<div class="mb-8">
<i class="fas fa-exclamation-triangle text-red-500 text-6xl mb-4"></i>
<h1 class="text-2xl font-bold text-gray-900 mb-2">Ошибка</h1>
<p class="text-gray-600"><%= message %></p>
</div>
<div class="space-y-4">
<a href="/admin/dashboard"
class="inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md text-white bg-blue-600 hover:bg-blue-700">
<i class="fas fa-arrow-left mr-2"></i>
Вернуться к панели управления
</a>
<div>
<a href="/" class="text-blue-600 hover:text-blue-500 text-sm">
Перейти на главную страницу сайта
</a>
</div>
</div>
</div>