-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 loc) · 1018 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
31
32
33
34
35
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="css/main.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
</head>
<body>
<div class="wrapper clearfix">
<textarea id="csv" class="text">
"Id","UserName"
"1","Sam Smith"
"2","Fred Frankly"
"1","Zachary Zupers"</textarea>
<br />
<a href="#" id="convert" class="rounded">Convert to JSON</a>
<a href="#" id="download" class="rounded">Download JSON</a>
<textarea id="json" class="text textInput"></textarea>
<a href="#" class="sendData rounded disabled">Submit</a>
<ul class="tournamentData">
<li class="header">
<span>Position</span>
<span class="wide">Team</span>
<span>Played</span>
<span>Won</span>
<span>Lost</span>
<span>Difference</span>
<span>Points</span>
</li>
</ul>
<ul class="tournamentData" id="tournamentData"></ul>
</div>
<script type="text/javascript" src="js/sendData.js"></script>
</body>
</html>