-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjavascript_disabled.html
83 lines (73 loc) · 2.88 KB
/
javascript_disabled.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<html>
<head>
<!--- Responsive Platform --->
<meta name="viewport" content="width=device-width, initial-scale=1.0"&gt>
<meta charset="utf-8">
<meta name="robots" content="noindex">
<!--- Favicon --->
<link rel="apple-touch-icon" sizes="180x180" href="./images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./images/favicon-16x16.png">
<link rel="manifest" href="./images/site.webmanifest">
<meta name="msapplication-TileColor" content="#fade95">
<meta name="theme-color" content="#fade95">
<meta http-equiv="refresh" content="3;URL='./javascript_disabled.html'" />
<!--- Check JavaScript --->
<script>
location.href ='./';
</script>
<title>JavaScript Desactivado</title>
<style>
body {
margin: 0;
padding: 0;
width: 100vw;
height: 100vh;
background-color: #fade95;
}
.message {
margin: 100px auto;
width: auto;
height: auto;
border: 1px solid #ccc;
border-radius: 5px;
padding: 10px;
font-family: "Century Gothic";
font-size: 16px;
color: #333;
background-color: white;
}
.message .header {
font-size: 24px;
font-weight: bold;
}
.message .body {
font-size: 14px;
line-height: 1.5;
}
.icons {
display: flex;
flex-direction: row;
justify-content: space-around;
}
</style>
</head>
<body>
<div class="message">
<img src="./images/java_script.svg" alt="Java Script Icon" widt="80" height="80"><h1 class="header">JavaScript no esta activado</h1>
<p class="body">
Nuestra plataforma utiliza una tecnología llamada JavaScript, tu navegador tiene desactivada esta función y por lo tanto no puedes usar la plataforma.
</p>
<p class="body">
Puedes obtener instrucciones de como activar este pulsando el icono de tu navegador:
</p>
<div class="icons">
<a href="https://support.google.com/admanager/answer/12654?hl=es"><img src="./images/browsers/chrome.svg" alt="Chrome" width="50" height="50"></a>
<a href="https://support.mozilla.org/es/kb/configuracion-de-javascript-y-preferencias-para-pa"><img src="./images/browsers/firefox.svg" alt="Firefox" width="50" height="50"></a>
<a href="https://support.apple.com/es-es/guide/safari/ibrw1074/16.1/mac/13.0"><img src="./images/browsers/safari.svg" alt="Safari" width="50" height="50"></a>
<a href="https://support.microsoft.com/es-es/office/habilitar-javascript-7bb9ee74-6a9e-4dd1-babf-b0a1bb136361"><img src="./images/browsers/edge.svg" alt="Microsoft Edge y Microsoft Internet Explorer" width="50" height="50"></a>
<a href="https://help.opera.com/en/latest/web-preferences/#javaScript"><img src="./images/browsers/opera.svg" alt="Opera" width="50" height="50"></a>
</div>
</div>
</body>
</html>