forked from senhan07/adguard-custom-block-page
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
107 lines (100 loc) · 4.16 KB
/
index.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title data-i18n="title"></title>
<link rel="shortcut icon" href="./favicon.ico">
<meta name="theme-color" content="#0c0c0f">
<link href="style.css" rel="stylesheet">
</head>
<body class="has-animations is-loaded">
<div id="root" class="body-wrap">
<header class="site-header reveal-from-bottom is-revealed">
<!-- Language toggle -->
<!-- <nav>
<ul>
<li><a href="index.html" onclick="changeLanguage('en')">English</a></li>
<li><a href="index.html" onclick="changeLanguage('de')">Deutsch</a></li>
</ul>
</nav> -->
<div class="container">
</div>
</header>
<main class="site-content">
<section class="hero section center-content illustration-section-01">
<div class="container-sm">
<div class="hero-inner section-inner">
<div class="hero-content">
<h1 class="mt-0 mb-16 reveal-from-bottom is-revealed" data-reveal-delay="200">
<span data-i18n="header_message"></span>
<span> <img style="width: 300px;" src="assets/images/ai_image02.png"> </span>
</h1>
<!-- <h5 class="mt-0 mb-16 reveal-from-bottom is-revealed" data-reveal-delay="200" id="url" style="color:#4d995f">http://127.0.0.1</h5> -->
<div class="container-xs">
<p class="m-0 mb-32 reveal-from-bottom is-revealed" data-reveal-delay="400" style="color:#232323" data-i18n="explainer_message"></p>
<div class="reveal-from-bottom mb-8 is-revealed" data-reveal-delay="600">
<div class="button-group">
<a class="button button-primary button-wide-mobile" href="javascript:history.back()" data-i18n="back"></a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
<footer class="site-footer center-content-mobile">
<div class="container">
<div class="site-footer-inner">
<div class="footer-top space-between text-xxs">
<div class="brand">
<h1 class="m-0">
<a href="https://controld.com">
<img src="assets/images/logo.png" style="width: 3em">
</a>
</h1>
</div>
</div>
<div class="footer-bottom space-between text-xxs invert-order-desktop">
<div class="footer-copyright">
<span id="ip"></span>
<br><span id="datetime"></span></td>
</div>
<nav class="footer-nav">
<ul class="list-reset">
<li></li>
<li>
<a href="https://controld.com/dashboard/" target="_blank" rel="noopener noreferrer" data-i18n="admin_settings"></a>
</li>
<li>
<a href="https://controld.com" target="_blank" rel="noopener noreferrer" data-i18n="about"></a>
</li>
</ul>
</nav>
</div>
</div>
</div>
</footer>
</div>
<!-- Show IP and Access Time/Date -->
<!--
<script type="application/javascript">
function getIP(json) {
document.getElementById("ip").innerHTML =
"External IP: " + json.ip;
}
</script>
<script type="application/javascript" src="https://api.ipify.org?format=jsonp&callback=getIP"></script>
<script>
document.getElementById("url").innerHTML =
window.location.origin;
</script>
<script>
var dt = new Date();
document.getElementById("datetime").innerHTML =
"Accessed on: " + (("0"+dt.getDate()).slice(-2)) +"/"+ (("0"+(dt.getMonth()+1)).slice(-2)) +"/"+ (dt.getFullYear()) +" "+ (("0"+dt.getHours()).slice(-2)) +":"+ (("0"+dt.getMinutes()).slice(-2)) +":"+ (("0"+dt.getSeconds()).slice(-2));
</script>
-->
<script src="assets/js/lang.js"></script>
</body>
</html>