-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathoffline.html
More file actions
46 lines (42 loc) · 1.63 KB
/
offline.html
File metadata and controls
46 lines (42 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Trainer Advisor - Оффлайн</title>
<meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"/>
<script defer src="/vendor/fontawesome-6.5.2/js/fontawesome.min.js"></script>
<link href="/vendor/fontawesome-6.5.2/css/all.min.css" rel="stylesheet">
<script src="/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<link href="/vendor/bootstrap/css/bootstrap.css" rel="stylesheet"/>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f8f9fc;
text-align: center;
padding: 20px;
}
.offline-container {
max-width: 500px;
padding: 2rem;
border-radius: 10px;
background: white;
box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
}
</style>
</head>
<body>
<div class="offline-container">
<div class="offline-icon">
<i class="bi bi-wifi-off"></i>
</div>
<h1>Вы находитесь оффлайн</h1>
<p>К сожалению, эта страница недоступна без подключения к интернету. Пожалуйста, проверьте ваше интернет-соединение
и попробуйте снова.</p>
<a class="btn btn-primary" onclick="window.location.href='/';">Вернуться на главную</a>
</div>
</body>
</html>