-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (47 loc) · 1.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
.form-group {
display: flex;
align-items: center;
gap: 8px;
margin: 14px;
}
</style>
</head>
<body>
<form id="form">
<div class="form-group">
<label for="description">Description</label>
<input type="text" name="description" id="description" />
</div>
<div class="form-group">
<label for="csv-file">CSV File</label>
<input type="file" accept=".csv" name="csv-file" id="csv-file" />
</div>
<div class="form-group">
<input checked type="checkbox" name="worker" id="worker" />
<label for="worker">Should use worker threads?</label>
</div>
<div class="form-group">
<input type="submit" value="Search" />
<input type="reset" value="Reset" />
</div>
<div class="form-group">
<output id="file-size"></output>
</div>
<div class="form-group">
<label for="progress">Processing progress:</label>
<progress id="progress" value="0" max="100">0%</progress>
</div>
<div class="form-group">
<output id="debug"></output>
</div>
</form>
<script src="./src/index.js" type="module"></script>
</body>
</html>