-
Notifications
You must be signed in to change notification settings - Fork 0
/
splash.html
46 lines (43 loc) · 1.61 KB
/
splash.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
<!DOCTYPE html>
<html>
<head>
<title>LLC Captive Portal</title>
<meta charset="UTF-8" />
<link rel="stylesheet" href="./splash.css">
</head>
<body>
<div class="container">
<div class="header">
<h1>Language Learning Center Wifi</h1>
</div>
<div class="eula">
<h3>The 488 IS LLC Wifi network is to be used in an official capacity only.</h2>
<h3>As a user of this network, your traffic is subject to monitoring and recording.</h3>
<h3>The following activites are explicitly prohibited:</h3>
<div class="list">
<ol>
<li>High bandwidth operations; e.g. large file transfers, media sharing, P2P (torrents), etc.</li>
<li>Obscene, defamatory, abusive or indecent speech or materials</li>
<li>Distribution of viruses, malware, or other destructive activities</li>
<li>Activities that disrupt the use of or interfere with the ability of others to use the network</li>
<li>Seeking information on passwords or data belonging to another user.</li>
<li>Intercepting or examining the content of messages, files or communications in transit</li>
<li>Hacking</li>
</ol>
</div>
<h3>
By clicking agree, I agree to adhere to the above guidelines and only use the network in an official capacity.
Failure to adhere to this agreement will result in a ban from the network and other disciplinary actions.
</h3>
</div>
<div class="icon">
<img id="bat" src="./bat.png">
</div>
<div class="login">
<form name="login-form" method="post" action="http://192.168.1.1:5280">
<input id="submit" type="submit" value="I Agree">
</form>
</div>
</div>
</body>
</html>