-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevent-data.html
More file actions
55 lines (46 loc) · 2.21 KB
/
event-data.html
File metadata and controls
55 lines (46 loc) · 2.21 KB
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
---
layout: basic
---
<!--for when user hasn't selected season yet-->
<div id= 'seasonAlertModal' class='modal'>
<div class='modal-content'>
<span class='close' onclick = 'closeSeasonModal()'>×</span>
<p>No season is currently checked. Go to the <a href="season-config.html">Season Configuration</a> page
to enter new seasons and season-specific elements/pit scouting questions.
<br><br>Make sure you check the new season you enter. </p>
</div>
</div>
<h2 style="text-align: center">Event Data</h2>
<h3 style = "text-align: center" id='eventDataIntroText'> </h3>
<br><h3>Enter the name of a new event or select an existing event.</h3>
<input type="text" id = "newEventInputBox" class='js_clear_on_load disableIfNoSeason' placeholder="Austin District Event">
<button class = "r3-button" onclick="addNewEvent()">Submit</button>
<h3 id="newEventConfirmation"></h3><br>
<fieldset>
<form id="eventRadioList" style="font-size:18px" onchange="changeCurrEvent()">
</form>
<button class='r3-button' onclick="deleteCheckedEvent()">Delete Checked Event</button>
</fieldset>
<br>
<h3>Here, enter the team numbers and names for the checked event.</h3>
<fieldset id = "eventSpecificTeams" class = 'disableIfNoSeason'>
<input type="text" id="teamNumber" class='js_clear_on_load' placeholder="6321">
<input type="text" id="teamName" class='js_clear_on_load' placeholder = "R-Cubed Rouse Raider Robotics">
<button id="teamSaveButton" class="r3-button" onclick='saveTeam()'>Save</button>
<br>
<h3 id="teamTableTitle"></h3>
<table id = "eventSpecificTeamTable">
<tr>
<th><b>Team Number</b></th>
<th><b>Team Name</b></th>
</tr>
</table>
<h4 id="teamConfirmationBox" class='js_clear_on_load'></h4> <br>
<h3>To delete a specific team, enter the team number in the following box and press 'Delete':</h3>
<input type="text" id="deleteSpecificTeamTextBox" class='js_clear_on_load' placeholder="123">
<button class='r3-button' onclick='deleteSpecificTeam()'>Delete</button>
</fieldset>
<a href="team-data.html">
<br><br>
<button class="r3-button">Continue to Team Data with Selected Event</button>
</a>