-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (58 loc) · 2.09 KB
/
index.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="login.css" />
<link rel="stylesheet" type="text/css" href="tooltipster.css" />
<script src="jquery-2.1.4.min.js"></script>
<script type="text/javascript" src="jquery.tooltipster.min.js"></script>
<script>
$(document).ready(function() {
$('.tooltip').tooltipster({
delay: 100,
animation: 'grow',
theme: 'tooltipster-shadow',
maxWidth: 1000,
minWidth: 450,
position:'top',
contentAsHTML: true
});
});
document.addEventListener("contextmenu", function(e){
e.preventDefault();
}, false);
</script>
</head>
<body oncontextmenu="return false">
<div class="outer">
<div class="inner">
<div class="card signin-card">
<h1>Collegium V</h1>
<div id="error">
Invalid Username or Password
</div>
<form>
<input id="user" tabindex="1" placeholder="Username" type="text" />
<input id="pass" tabindex="2" placeholder="Password" type="password" />
<button type="submit" tabindex="4" class="btn">
Sign in
</button>
</form>
</div>
</div>
</div>
<div class="actions-bar">
<div id="session_list" class="action">
<select id="session" tabindex="3">
</select>
</div>
<div id="terms" class="tooltip action" title="<h2>Acceptable Use Policy:<br /> [1] Unauthorized use is prohibited; <br /> [2] Usage may be subject to security testing and monitoring; <br /> [3] Misuse is subject to criminal prosecution; and <br /> [4] Users have no expectation of privacy except as otherwise provided by applicable privacy laws. </h2>">
Acceptable Use Policy
</div>
<div id="clock" class="action action-clock">00:00</div>
</div>
<script src="mock.js"></script>
<script src="clock.js"></script>
<script src="login.js"></script>
</body>
</html>