-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (49 loc) · 1.42 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
<!DOCTYPE html>
<html>
<head>
<title>Event Manager</title>
<link rel="stylesheet" href="./css/styles.css" />
</head>
<body>
<div class="todo-header">
<h1>EVENT MANAGER</h1>
</div>
<div class="page-container">
<div class="title-header">UPLOAD CSV</div>
<div class="contents-div" id="csv-input-div">
<div class="upload-csv-div">
<label for="csv-type-select" class="csv-type-label"
>Select the type of CSV and upload</label
>
<br />
<select id="csv-type-select" class="csv-type-select" required>
<option value="events">Events</option>
<option value="tasks">Tasks</option>
</select>
<br />
<input
type="file"
id="input-file"
name="filename"
class="input-file"
accept=".csv"
/>
<br />
<input
type="submit"
class="submit-csv-button"
onclick="submitCsv()"
/>
</div>
<div class="goto-page">
<button class="goto-button" onclick="goToEvent()">Events</button>
<button class="refresh-button" id="refresh-button">REFRESH</button>
</div>
</div>
<div class="warning-popup" id="warning-popup">
<div id="warning-msg"></div>
</div>
</div>
<script src="./scripts/script.js"></script>
</body>
</html>