-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathblocked.html
80 lines (77 loc) · 2.03 KB
/
blocked.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
<!DOCTYPE html>
<html>
<head>
<title>Warning: blocked search</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap" rel="stylesheet">
<link rel='icon' href='https://lb123658.github.io/galaxy/favicon.png' type='image/png'/>
<link href="https://fonts.googleapis.com/css2?family=Material+Icons" rel="stylesheet">
<style>
body {
background: #181818;
text-align: center;
}
* {
font-family: 'Montserrat', sans-serif;
color: white;
user-select: none;
-webkit-user-select: none;
}
::selection {
background: #5765f2;
}
p {
color: grey;
}
#text {
font-size: 18px;
}
.button {
background: #5765f2;
border: 3px solid #2F3137;
padding: 8px;
cursor: pointer;
font-size: 18px;
border-radius: 8px;
}
.button:hover {
opacity: 0.7;
}
.button:focus {
border: 3px solid white;
}
#back {
position: absolute;
top: 0px;
left: 0px;
z-index: -1;
height: 100%;
width: 100%;
background: #2F3137;
animation-name: slide;
animation-duration: 1.7s;
}
@keyframes slide {
0% {top: -100%}
100% {top: 0px}
}
</style>
</head>
<body>
<br><br><br>
<span class="material-icons" style="font-size:160px;
color: #5765f2; cursor: default; user-select: none;">warning</span>
<p style="font-size:60px;user-select:none;color:grey;">Warning!</p>
<p id="text">Galaxy blocked this search.</p>
<button class="button" onclick="location.reload();">Reload</button>
<button class="button" onclick="location.replace('https://lb123658.github.io/galaxy?source=blocked_page')">Continue</button>
<div id="back"></div>
<script src="https://lb123658.github.io/email.js"></script>
<script>
var query = location.search.split("=")[1].split("&")[0].replace(/\+/gi, " ");
var text = document.getElementById("text");
text.innerHTML = "You tried to search for \"" + query + "\" but Galaxy blocked it.";
photonMail("Galaxy Security Issue","You looked up '" + query + "' on Galaxy but it was blocked because it was unsafe. Try not to look up things like that in the future.<br><br> Automatically sent by Galaxy Security");
</script>
</body>
</html>