-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
81 lines (69 loc) · 2.37 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
73
74
75
76
77
78
79
80
81
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Pedro Penna - @pedropenna">
<title>Musfealle - Lightdm Webkit Greeter Theme</title>
<script src="js/jquery-1.10.2.js"></script>
<script src="js/mock.js"></script>
<script src="js/main.js"></script>
<link rel="stylesheet" type="text/css" href="css/bootstrap/bootstrap.css" />
<style type="text/css">
html,
body {
height: 100%;
width: 100%;
background-color: #000000;
font-family: "Lato", "Open Sans", sans-serif;
overflow: hidden;
}
#motherOfAllContainers {
width:100%;
height:100%;
font-family: sans-serif;
}
div {
padding: 3px;
}
#sessionDisplay {
background-color: rgba(230, 230, 150, 0.6);
border-radius: 4px;
color: #000000;
display:none;
font-weight: bold;
padding: 3px 16px 3px 16px;
margin-top: 16px;
margin: 17px 3px 0px 3px;
}
#inputBoxesContainer {
position: absolute;
top: calc(55%);
left: calc(85% - 12em);
background-color: rgba(255, 255, 255, 0.1);
border-radius: 8px;
}
.form-control {
width: 12em;
}
</style>
</head>
<body>
<div id="motherOfAllContainers">
<video id="backgroundVideo" poster="video.webm" autoplay="" loop=""
src="videos/rays.webm" style="position:absolute; top: 0px;
left: 0px; min-width: 100%; min-height: 100%; z-index:0; display:none"></video>
<div id="inputBoxesContainer" style="display:none">
<div>
<input type="text" name="username" id="username" class="form-control">
</div>
<div>
<input type="password" name="password" id="password" class="form-control">
</div>
<div id="sessionDisplay">
Session: <span id="sessionNameContainer" style="" ></span>
</div>
</div>
</div>
</body>
</html>