-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate405.html
40 lines (35 loc) · 1.51 KB
/
template405.html
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
<!DOCTYPE html>
<html data-theme="light" lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap"
rel="stylesheet" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/full.css" rel="stylesheet" type="text/css" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet" type="text/css" />
<!-- Notifications Notiflix -->
<link rel="stylesheet" href="./js/utils/notiflix-3.2.5.min.css" />
<script src="./js/utils/notiflix-3.2.5.min.js"></script>
<title>Index | Dashboard</title>
</head>
<body>
<div class="hero min-h-screen bg-base-200">
<div class="hero-content text-center">
<div class="max-w">
<h1 class="text-3xl font-bold">405 | No permitido</h1>
<p class="py-6">La caracteristica a la que intentas acceder no esta disponible sin conexión a internet
</p>
<a class="btn text-white border-none hover:bg-green-500 bg-green-500"
href="./completed-visits.html">Regresar al menu</a>
</div>
</div>
</div>
<script src="./js/utils/network.js"></script>
<script>
window.addEventListener('online', (event) => {
window.location.reload(false)
})
</script>
</body>
</html>