-
Notifications
You must be signed in to change notification settings - Fork 1
/
security.html
46 lines (46 loc) · 1.03 KB
/
security.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pozor!</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
background-color: red;
padding: 50px;
}
h1 {
font-size: 60px;
}
p {
font-size: 30px;
text-align: center;
}
</style>
<script src="/libs/json5.min.js"></script>
<script src="/lang/localization.js"></script>
<script>
Localization.loadStrings();
</script>
</head>
<body>
<h1>$[warning];</h1>
<p>$[security_redirect_error];</p>
<button onclick="window.location.replace('http://localhost:10000')">
$[continue_to_klindos];
</button>
<script>
Localization.loadDOM();
</script>
</body>
</html>