-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
119 lines (118 loc) · 4.55 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Juicy Data Uploader</title>
<link rel="stylesheet" href="./css/bootstrap.min.css" />
<link rel="stylesheet" href="./css/styles.css" />
</head>
<body>
<div class="content">
<div class="container">
<div class="card">
<div class="row">
<div class="col-sm-2">
<h1>0</h1>
</div>
<div class="col-sm-10">
<input class="form-control" name="scoringSystemIP" id="scoringSystemIP" value="http://localhost" />
<h2>Scoring System IP</h2>
</div>
</div>
</div>
<div class="card">
<div class="row">
<div class="col-sm-2">
<h1>1</h1>
</div>
<div class="col-sm-10">
<select class="form-control" name="eventID" id="eventID" onchange="checkEventID()"
><option></option
></select>
<h2>
Select the match ID
<span style="margin-left: 10px;"><button type="button" class="btn btn-info btn-sm" onclick="refresh()">Refresh</button></span>
</h2>
</div>
</div>
</div>
<div class="card">
<div class="row">
<div class="col-sm-2">
<h1>!!</h1>
</div>
<div class="col-sm-10">
<!-- <input class="form-control" name="OBSSaveLocation" id="OBSSaveLocation"> -->
<input type="file" name="OBSSaveLocation" id="OBSSaveLocation" webkitdirectory directory multiple / disabled>
<span id="OBSSaveLocationText">No folder selected</span>
<h2>OBS Folder Save Location</h2>
</div>
</div>
</div>
<div class="card">
<div class="row">
<div class="col-sm-2"><h1>!!</h1></div>
<div class="col-sm-10">
<div class="row">
<div class="col-sm-2"><input type="number" id="OBSMatchNumber" class="form-control" disabled /></div>
<div class="col-sm-10">
<button class="btn btn-secondary btn-block" id="startOBSButton" onclick="startOBS()" disabled>
Load Qual Teams OBS
</button>
</div>
</div>
<h2>Load Qual Teams OBS</h2>
</div>
</div>
</div>
<div class="card">
<div class="row">
<div class="col-sm-2"><h1>!!</h1></div>
<div class="col-sm-10">
<div class="row">
<div class="col-sm-2"><input type="number" id="elimOBSRedAlliance" class="form-control elimOBSRedAlliance" disabled /></div>
<div class="col-sm-8">
<button class="btn btn-secondary btn-block" id="elimStartOBSButton" onclick="elimStartOBS()" disabled>
Load Elim Teams OBS
</button>
</div>
<div class="col-sm-2"><input type="number" id="elimOBSBlueAlliance" class="form-control elimOBSBlueAlliance" disabled /></div>
</div>
<h2>Load Elim Teams OBS</h2>
</div>
</div>
</div>
<div class="card">
<div class="row">
<div class="col-sm-2"><h1>!!</h1></div>
<div class="col-sm-10">
<button class="btn btn-secondary btn-block" id="loadRankingsOBS" onclick="loadRankingsOBS()" disabled>
Load Rankings OBS
</button>
<h2>Load Rankings OBS</h2>
</div>
</div>
</div>
<div class="card">
<div class="row">
<div class="col-sm-2"><h1>!!</h1></div>
<div class="col-sm-10">
<div class="row no-gutters">
<div class="col-sm-5"><input type="text" id="OBSLowerThirdsName" class="form-control" placeholder="name" disabled /></div>
<div class="col-sm-4"><input type="text" id="OBSLowerThirdsTitle" class="form-control" placeholder="title" disabled /></div>
<div class="col-sm-3">
<button class="btn btn-secondary btn-block" id="OBSLowerThirdsButton" onclick="setLowerThirds()" disabled>
Lower Thirds
</button>
</div>
</div>
<h2>Lower Thirds</h2>
</div>
</div>
</div>
</div>
</div>
</body>
<script src="./js/functions.js"></script>
<script src="./js/obs-teams.js"></script>
</html>