-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
45 lines (40 loc) · 1.84 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
<!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>Vaccine Scheduler</title>
<link rel="stylesheet" href="style.css" />
<script src="https://unpkg.com/read-excel-file@4.x/bundle/read-excel-file.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<h1>Vaccine Scheduler</h1>
<form>
<strong>
<p>Select file with registrations :</p>
</strong>
<input type="file" id="file" /><br />
<a href="https://github.com/vasu-gondaliya/vaccine-scheduler/raw/main/data.xlsx" target="_blank">
<strong>Example Data</strong> <i class="fa fa-download" aria-hidden="true"></i>
</a>
<strong>
<p>Select Your algorithm :</p>
</strong>
<input type="radio" name="algorithm" id="fcfs" value="fcfs" checked />
<label for="fcfs">FCFS</label>
<input type="radio" name="algorithm" id="priority" value="priority" />
<label for="priority">Priority</label><br />
<label for="vaccines-per-day"><strong>Enter Number Of Vaccines Per Day : </strong></label>
<input type="number" name="vaccines-per-day" id="vaccines-per-day" value="1" min="1" />
<br />
<button type="button" id="calculate">Calculate</button>
</form>
<button id="show-data-button" class="visible">Show Data</button><br />
</body>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script src="script.js"></script>
</html>