-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
34 lines (27 loc) · 1.03 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="Ballot tallying program">
<meta name="keywords" content="ballot,election,vote,STV">
<meta name="author" content="Desmond Silveira">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vote</title>
<link rel="stylesheet" href="styles/vote.css">
<script data-ad-client="ca-pub-2065756128202021" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
</head>
<body>
<div id="nav">
<a href="about.html" id="about">About</a>
</div>
<form>
<label for="blt>">BLT file:</label> <input id="blt" name="blt" type="file" />
<label for="fixed>">Output decimal places:</label> <input id="fixed" type="number" min="0" max="17"/>
</form>
<div id="blt-content"></div>
<div id="results"></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="scripts/stv.js"></script>
<script src="scripts/vote.js"></script>
</body>
</html>