-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·181 lines (160 loc) · 4.78 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>#How long can I chill??</title>
<style type="text/css">
:root {
--container-padding: 18px;
--bg-color: #d84848;
}
html {
height: 100%;
}
body {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
background-color: var(--bg-color);
margin: 0px;
padding: 0px;
}
a {
text-decoration: none;
color: black;
font-weight: bold;
margin-right: 5px;
}
.container {
width: 641px;
height: 480px;
box-sizing: border-box;
background-color: white;
padding: var(--container-padding);
}
.content {
box-sizing: border-box;
background-color: var(--bg-color);
border-radius: 10px;
height: 100%;
display: flex;
flex-direction: column;
padding: 10px;
align-items: center;
}
.ticket {
font-size: 150px;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
}
.flex {
display: flex;
width: 100%;
}
.content-col {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
width: 100%;
}
.useful-links {
align-self: flex-start;
}
.grow {
flex-grow: 1;
}
.logo {
width: auto;
height: 215px;
margin-inline: 30px;
box-sizing: border-box;
}
</style>
<script type="text/javascript">
let averageTicketTime = 0;
let currentTicket = 0;
let userTicket = 0;
document.addEventListener("DOMContentLoaded", function () {
const currentTicketRef = document.getElementById("currentTicket");
const waitTimeRef = document.getElementById("waitTime");
averageTicketTime =
JSON.parse(window.localStorage.getItem("averageTicketTime")) || 22;
currentTicket =
JSON.parse(window.localStorage.getItem("currentTicket")) || 166;
// console.log(window.location.href)
waitTimeRef.textContent = averageTicketTime;
currentTicketRef.textContent = currentTicket;
var form = document.getElementById("numberForm");
form.addEventListener("submit", function (e) {
e.preventDefault();
const userInput = document.getElementById("userTicket");
const resultRef = document.getElementById("result");
userTicket = userInput.value;
const timeToWait = averageTicketTime * (userTicket - currentTicket);
resultRef.textContent = `You have left ~ ${timeToWait} minutes.`;
});
});
</script>
</head>
<body>
<div class="container">
<div class="content">
<span>Currently signing ticket number is:</span>
<span class="ticket">No. <span id="currentTicket">000</span> </span>
<div class="flex">
<div class="content-col">
<div>
Today's ticket's average is
<span id="waitTime">0</span>
min.
</div>
<span>Find Out How Long you have to wait!</span>
<form id="numberForm">
<input
type="text"
id="userTicket"
name="number"
placeholder="Your ticket number"
/>
<button type="submit">Submit</button>
</form>
<div id="result"></div>
<div class="useful-links">
Useful links <br />
<a
href="http://www.vu.lt"
target="_blank"
rel="noopener noreferrer"
>vu.lt</a
>
<a
href="http://www.ffsa.lt"
target="_blank"
rel="noopener noreferrer"
>ffsa.lt</a
>
<a
href="http://www.ff.vu.lt"
target="_blank"
rel="noopener noreferrer"
>ff.vu.lt</a
>
</div>
</div>
<div>
<img
class="logo"
src="images/vusa_logo.svg"
alt="Vilnius universtiy student assoc. logo"
/>
</div>
</div>
</div>
</div>
</body>
</html>