-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (29 loc) · 895 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<script type="module" src="js/main.mjs"></script>
</head>
<body>
<div id="wrapper">
<h1>Seats</h1>
<section id="inputs-section">
<div id="inputs-container"></div>
<div id="add-party-container">
<input id="add-party-input" type="text" name="newparty" placeholder="party name">
<button id="add-party-btn">Add party</button>
<span id="party-sizes-warning">total: 100%</span>
</div>
</section>
<section id="results-section">
<div id="result-bar-wrapper">
<div id="result-bar">
</div>
</div>
<hr style="transform: translate(90);">
</section>
</div>
</body>
<html