-
Notifications
You must be signed in to change notification settings - Fork 11
/
blocked.html
30 lines (27 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title id="title">Access Required</title>
<link rel="stylesheet" href="/themes/geoblocked.css">
<script src="themes.js"></script>
<link rel="shortcut icon" href="/img/favicon.png" id="favicon" type="image/x-icon">
<link rel="stylesheet" href="/assets/fontawesome/css/all.css">
<script src="/assets/js/themes.js"></script>
<script src="/assets/js/main.js"></script>
<script src="/assets/js/settings.js"></script>
<script src="/assets/js/geoblocker.js"></script>
<script src="/assets/js/profile.js" type="module"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
</head>
<body>
<h1 class="face">:(</h1>
<p class="message">Looks like you don't have access to this site. Try again later or <br><a onclick="showAuthDiv()" href="#">enter an access code.</a></p>
<div class="auth" style="display: none;" id="auth">
<input type="text" name="auth" id="invite-code" placeholder="XXXXXX"><a href="https://github.com/orgs/useclassplay/discussions/30" target="_blank"><i class="fa-regular fa-circle-question" style="color: gray; margin-left: -25px; vertical-align: 3px;"></i></a><br>
<button class="enter" onclick="checkInviteCode()" style="bottom: 10px;">Enter</button>
<p id="error-message" style="color: rgb(255, 230, 0); display: none;">That code seems to be invalid. Try again.</p>
</div>
</body>
</html>