-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (61 loc) · 3.21 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
<!DOCTYPE html>
<html>
<head>
<title>2023 Czech Presidential Election Prediction Generator</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="script.js"></script>
</head>
<body>
<h1>2023 Czech Presidential Election Prediction Generator</h1>
<p>This is a simple web app that puts a list of your guesses for the first round of the 2023 Czech presidential election into a clipboard, so you don't have to calculate whether your guess to share on Twitter or anywhere else adds up to 100%.</p>
<form>
<label for="candidate1">Petr Pavel:</label>
<input type="text" id="candidate1" oninput="updateTotal()">% <br>
<label for="candidate2">Andrej Babiš:</label>
<input type="text" id="candidate2" oninput="updateTotal()">% <br>
<label for="candidate3">Danuše Nerudová:</label>
<input type="text" id="candidate3" oninput="updateTotal()">% <br>
<label for="candidate4">Pavel Fischer:</label>
<input type="text" id="candidate4" oninput="updateTotal()">% <br>
<label for="candidate5">Jaroslav Bašta:</label>
<input type="text" id="candidate5" oninput="updateTotal()">% <br>
<label for="candidate6">Marek Hilšer:</label>
<input type="text" id="candidate6" oninput="updateTotal()">% <br>
<label for="candidate7">Karel Diviš:</label>
<input type="text" id="candidate7" oninput="updateTotal()">% <br>
<label for="candidate8">Tomáš Zima:</label>
<input type="text" id="candidate8" oninput="updateTotal()">% <br>
<div id="total"></div>
<br>
<label for="sortOption">Sort by:</label>
<select id="sortOption">
<option value="percentage">Percentage of votes</option>
<option value="alphabetFirst">Alphabetical (first name)</option>
<option value="alphabetLast">Alphabetical (last name)</option>
</select>
<br>
<label for="nameOption">Name format:</label>
<select id="nameOption">
<option value="full" selected>First name and last name</option>
<option value="last">Last name only</option>
</select>
<br>
<br>
<label for="percentageSignOption">Include percentage sign (%)</label>
<input type="checkbox" checked="true" id="percentageSignOption">
<br>
<br>
<label for="colonOption">Include colon (:)</label>
<input type="checkbox" checked="true" id="colonOption">
<br>
<br>
<label for="whitespaceOption">Add whitespace between number and percentage sign</label>
<input type="checkbox" checked="true" id="whitespaceOption">
</form>
<p>
<button onclick="generate()">Copy Predictions to Clipboard</button>
</p>
<a href="https://github.com/OTFlorian" id="creator">Created by Oldrich Tristan Florian</a>
<p id="repository">GitHub repository available <a href="https://github.com/OTFlorian/cz_voting_predictions_2023">here</a>. </p>
</body>
</html>