-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
23 lines (23 loc) · 945 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Tabbycat Importer</title>
<meta charset="utf-8"/>
<script type="text/javascript" src="papaparse.min.js"></script>
</head>
<body>
<h1>Export to Tabbycat</h1>
<form>
<ul>
<li><label for="url">Tabbycat URL<sup>*</sup>: </label><input type="text" name="url" id="url" required/></li>
<li><label for="tournament">Tournament name: </label><input type="text" id="tournament" name="tournament"/></li>
<li><label for="slug">Slug<sup>*</sup>: </label><input type="text" name="slug" id="slug" required/></li>
<li><label for="api-token">API Token<sup>*</sup>: </label><input type="text" name="api-token" id="api-token" required/></li>
<li><label for="csvs">CSV File(s)<sup>*</sup>: </label><input type="file" name="csvs" id="csvs" multiple required/></li>
</ul>
<button type="submit">Submit</button>
</form>
<ul id="activity"></ul>
<script src="import.js"></script>
</body>
</html>