mirror of
https://github.com/senhan07/adguard-custom-block-page.git
synced 2026-03-31 06:23:51 -04:00
Add files via upload
This commit is contained in:
32
index.html
32
index.html
@@ -1,7 +1,7 @@
|
||||
<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>Site Blocked</title>
|
||||
<title>Oops, Site blocked</title>
|
||||
<link rel="shortcut icon" href="./favicon.ico">
|
||||
<meta name="theme-color" content="#0c0c0f">
|
||||
<link href="./style.css" rel="stylesheet">
|
||||
@@ -22,6 +22,7 @@
|
||||
<h1 class="mt-0 mb-16 reveal-from-bottom is-revealed" data-reveal-delay="200">
|
||||
<span>Oops, Site blocked</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">This site is blocked due to content filtering. Site may contain content harmful, illegal, or malicious to your computer.</p>
|
||||
<div class="reveal-from-bottom mb-8 is-revealed" data-reveal-delay="600">
|
||||
@@ -48,25 +49,42 @@
|
||||
</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://dns1.cloudn.home" target="_blank" rel="noopener noreferrer">Admin Settings
|
||||
</a>
|
||||
<a href="https://dns1.cloudn.home" target="_blank" rel="noopener noreferrer">Admin Settings</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://adguard.com" target="_blank" rel="noopener noreferrer">About</a>
|
||||
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<div class="footer-copyright">Protected by Adguard Home <br>Accessed on: <span id="datetime">17/04/2022 21:14:13</span> </div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
|
||||
<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>
|
||||
var dt = new Date();
|
||||
document.getElementById("datetime").innerHTML = (("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));
|
||||
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>
|
||||
</body></html>
|
||||
Reference in New Issue
Block a user