-
Notifications
You must be signed in to change notification settings - Fork 0
/
tryouts.html
54 lines (52 loc) · 2.53 KB
/
tryouts.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css" integrity="sha512-EZLkOqwILORob+p0BXZc+Vm3RgJBOe1Iq/0fiI7r/wJgzOFZMlsqTa29UEl6v6U6gsV4uIpsNZoV32YZqrCRCQ==" crossorigin="anonymous" />
<title>Academic League Tryouts</title>
<link rel="stylesheet" type="text/css" href="./tryouts.min.css">
<link href="https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,700;1,400&display=swap" rel="stylesheet">
<script src="./tryouts.min.js" defer></script>
</head>
<body>
<div class="container">
<header>
<h1 class="title">tryouts</h1>
<p class="userinfo"></p>
</header>
<div class="status-bar">
<h4>Status: <span class="status"></span></h4>
<button class="skip" onclick="skipTimer()">
Skip timer (demo only)
</button>
</div>
<div class=timer>
<p class="time">
<span class=main-time>0:00</span><span class="deciseconds">.0</span>
</p>
<div class="loading-bar-background">
<div class="loading-bar"></div>
</div>
</div>
<h5 class="question"><span class="noquestion"><em>question</em></span></h5>
<form spellcheck="false">
<div class="form-group">
<label for="answer">Answer:</label>
<input type="text" placeholder="answer" name="answer" id="answer" disabled>
</div>
</form>
<hr>
<ul>
<li><strong>you have 8 seconds to answer after the question is read</strong></li>
<li><strong>your answer will be submitted automatically when time runs out</strong></li>
<li><strong>spelling and capitalization don't count</strong> (as long as we can tell you know the answer)</li>
<li><strong>only last names are required</strong> (Abraham Lincoln can be "Lincoln", William Shakespeare can be "Shakespeare")</li>
<li><strong>unless multiple people with that name are well known</strong> (you must write "Theodore Roosevelt" or "Teddy Roosevelt" to avoid confusion with Franklin D. Roosevelt)</li>
<li><strong>monarchs must be named with their number or epithet if they have one</strong> (Queen Elizabeth II, Ivan the Terrible)</li>
</ul>
<hr>
<div class="confirmations"></div>
</div>
</body>
</html>