-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathredirect.html
More file actions
32 lines (32 loc) · 791 Bytes
/
redirect.html
File metadata and controls
32 lines (32 loc) · 791 Bytes
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
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<title>Auto Referer redirecting</title>
<script type="text/javascript" src="redirect.js"></script>
<style>
body {
background-color: #e8e8e8
}
@media (prefers-color-scheme: dark) {
body {
background-color: #303030;
color:#e3e3e3;
}
}
.hint {
color: #7d7d7d;
}
#a_targetUrl {
color: unset;
}
</style>
</head>
<body>
<span class="hint">Auto Referer protection. Redirecting to </span>
<a id="a_targetUrl"><span id="span_targetUrl"></span></a>
<br>
<br>
<span class="hint">(js <code>document.referrer</code> workaround)</span>
</body>
</html>