-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTeamVS.html
More file actions
132 lines (132 loc) · 5.06 KB
/
TeamVS.html
File metadata and controls
132 lines (132 loc) · 5.06 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
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
120
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Team Gen</title>
<link rel="icon" type="image/x-icon" href="images/favIcon.png">
<link rel="stylesheet" href="css/style.css">
<style>
table, th, td {
border: 1px solid black;
border-collapse: collapse;
padding: 5px;
}
.team-data {
margin-top: 20px;
display: flex;
justify-content: space-between;
}
.team-column {
width: 48%;
}
table th, td {
text-align: center;
vertical-align: middle;
}
.Results {
text-align: center;
}
ul {
list-style: none; /* Removes the dots */
padding: 0; /* Removes default padding */
}
</style>
</head>
<body>
<nav class="navbar">
<div class="logo">
<a href="./index.html">
<img src="./images/CORElogoStandard.png" alt="Logo" class="logo-img" id="logo-standard">
<img src="./images/CORELogoBlack.png" alt="Hover Logo" class="logo-img-hover" id="logo-hover">
</a>
</div>
<ul class="nav-links">
<div class="nav-left">
<li><a href="./index.html">Home</a></li>
<li><a href="./OurMatches.html">Our Matches</a></li>
<li class="dropdown">
<a class="dropbtn">Review</a>
<div class="dropdown-content">
<a href="./GenTeams.html">Review teams</a>
<a href="./GenMatches.html">Review matches</a>
<a href="./Leader.html">Review Leaderboard</a>
</div>
</li>
<li class="dropdown">
<a class="dropbtn">Tools</a>
<div class="dropdown-content">
<a href="./TeamVS.html">Team VS</a>
<a href="./Tools/GameGen.html">Double Elims predictor</a>
<a href="./Tools/PickList.html" >Pick List Helper</a>
</div>
</li>
</div>
<li class="dropdown">
<a class="dropbtn">Pratice Data Review</a>
<div class="dropdown-content">
<a href="./PraticeTemplates/GenTeams.html">Review Teams Pratice Data</a>
<a href="./PraticeTemplates/GenMatches.html" >Review Matches Pratice data</a>
<a href="./PraticeTemplates/Leader.html" >Review Pratice Leaderboard</a>
</div>
</li>
<div class="nav-right">
<li class="dropdown">
<a href="./ArchivedData/ArcData.html" class="dropbtn">Download Our Data</a>
<div class="dropdown-content">
<a href="./ArchivedData/ArcData.html">ReefScape.zip (Not Out yet)</a>
<a href="./ArchivedData/ArcData.html">DemoData.zip</a>
</div>
</li>
<li class="dropdown">
<a class="dropbtn">Extras</a>
<div class="dropdown-content">
<a href="./">Documentation</a>
</div>
</li>
<li class="dropdown">
<a href="./index.html" class="dropbtn">year: ReefScape</a>
<div class="dropdown-content">
<a href="./">ReefScape</a>
<a href="./" >Crescendo</a>
<a href="./">Charged UP</a>
</div>
</li>
</div>
</ul>
</nav>
<div class="backbox">
<h1>Team Generator</h1>
<div>
<label for="redTeam1">Red Team 1:</label>
<input type="text" id="redTeam1">
<label for="redTeam2">Red Team 2:</label>
<input type="text" id="redTeam2">
<label for="redTeam3">Red Team 3:</label>
<input type="text" id="redTeam3">
</div>
<div>
<label for="blueTeam1">Blue Team 1:</label>
<input type="text" id="blueTeam1">
<label for="blueTeam2">Blue Team 2:</label>
<input type="text" id="blueTeam2">
<label for="blueTeam3">Blue Team 3:</label>
<input type="text" id="blueTeam3">
</div>
<br>
<button onclick="generateTeams();">Generate Teams</button>
</div>
<br><br>
<div class="backbox">
<h2 class="Results">Results</h2>
<div id="results" class="Results"></div>
<div class="team-data">
<div id="redTeamData" class="team-column"></div>
<div id="blueTeamData" class="team-column"></div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/PapaParse/5.3.0/papaparse.min.js"></script>
<script src="js\TeamVsScript.js"></script>
<script></script>
</body>
</html>