19 lines
714 B
Plaintext
19 lines
714 B
Plaintext
<%- include('partials/page-start') %>
|
|
|
|
<section class="page center-page">
|
|
<div class="empty-state error-state">
|
|
<span class="material-symbols-outlined">database_off</span>
|
|
<h1><%= errorTitle || 'Không thể tải dữ liệu' %></h1>
|
|
<p><%= errorMessage || 'Web server đang gặp lỗi khi đọc dữ liệu. Kiểm tra log container để xem nguyên nhân chi tiết.' %></p>
|
|
<% if (errorDetails) { %>
|
|
<code class="error-detail"><%= errorDetails.code %>: <%= errorDetails.message %></code>
|
|
<% } %>
|
|
<a class="btn btn-primary" href="/">
|
|
<span class="material-symbols-outlined">sync</span>
|
|
Thử lại
|
|
</a>
|
|
</div>
|
|
</section>
|
|
|
|
<%- include('partials/page-end') %>
|