Files
marketplaces/src/app/app.html
sdarbinyan 751ad48489 home page
2026-02-14 01:28:08 +04:00

26 lines
979 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
@if (checkingServer()) {
<div class="server-check-overlay">
<div class="server-check-content">
<div class="spinner-large"></div>
<h2>Проверка соединения с сервером...</h2>
</div>
</div>
} @else if (!serverAvailable()) {
<div class="server-error-overlay">
<div class="server-error-content">
<div class="error-icon">⚠️</div>
<h1>Извините, возникла проблема</h1>
<p>Не удается подключиться к серверу. Пожалуйста, проверьте подключение к интернету или попробуйте позже.</p>
<button class="retry-btn" (click)="retryConnection()">Попробовать снова</button>
</div>
</div>
} @else {
<app-header></app-header>
@if (!isHomePage()) {
<app-back-button />
}
<main class="main-content">
<router-outlet></router-outlet>
</main>
<app-footer></app-footer>
}