-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteams.html
156 lines (134 loc) · 5.35 KB
/
teams.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!--
TeamGen
===========
Developer: Matthew Gross
Email: mattkgross@gmail.com
Website: http://www.mattkgross.com
Repository: https://github.com/mattkgross/TeamGen
Disclaimer: The author of this tool is not responsible for any misuse, loss, or distribution of data or information associated with this site.
This product is provided AS IS and, by using this software, the site owner agrees to all responsibility resulting from any actions taken when using this service.
Rights: This software is openly distributed and may be used, altered, and redistributed so long as credit remains given where it is due.
Copyright (C) Matthew Gross
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
=================================================================================================================================================================
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Allows input of players and then creates teams with evenly distributed skill levels.">
<meta name="author" content="Matthew Gross">
<title>TeamGen</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<script src="js/jquery-2.1.3.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- Link to the magic. -->
<script src="js/teamgen.js"></script>
<style type="text/css">
.team-list {
text-align: center;
display: none;
}
</style>
<script type="text/javascript">
// Initialize the Tooltips & Popovers
$(function() {
$('span[rel="tooltip"]').tooltip();
});
</script>
</head>
<body onload="renderTeams()">
<div class="container">
<div class="header">
<div class="row">
<div class="col-lg-6">
<h3 class="text-muted">TeamGen</h3>
</div>
<div class="col-lg-6" style="text-align: right;">
<br><a href="about.html">How do I use this?</a>
</div>
</div>
</div>
<div class="row" id="row1">
<div class="col-lg-3 team-list" id="col1">
<h3>Team 1</h3>
</div>
<div class="col-lg-3 team-list" id="col2">
<h3>Team 2</h3>
</div>
<div class="col-lg-3 team-list" id="col3">
<h3>Team 3</h3>
</div>
<div class="col-lg-3 team-list" id="col4">
<h3>Team 4</h3>
</div>
</div>
<br>
<div class="row" id="row2">
<div class="col-lg-3 team-list" id="col5">
<h3>Team 5</h3>
</div>
<div class="col-lg-3 team-list" id="col6">
<h3>Team 6</h3>
</div>
<div class="col-lg-3 team-list" id="col7">
<h3>Team 7</h3>
</div>
<div class="col-lg-3 team-list" id="col8">
<h3>Team 8</h3>
</div>
</div>
<br>
<div class="row" id="row3">
<div class="col-lg-3 team-list" id="col9">
<h3>Team 9</h3>
</div>
<div class="col-lg-3 team-list" id="col10">
<h3>Team 10</h3>
</div>
<div class="col-lg-3 team-list" id="col11">
<h3>Team 11</h3>
</div>
<div class="col-lg-3 team-list" id="col12">
<h3>Team 12</h3>
</div>
</div>
<br>
<div style="text-align: center;">
<button type="button" class="btn btn-info" onclick="window.location.href='index.html'">Go Back</button>
<button type="button" class="btn btn-warning" onclick="teamRegen()">Regenerate Teams</button>
<button type="button" class="btn btn-danger" onclick="startOver()">Erase & Start Over</button>
</div>
<footer class="footer">
<br><p style="text-align: center;">© <a href="http://www.mattkgross.com" target="_blank">Matthew Gross</a> <script>document.write(new Date().getFullYear())</script></p>
</footer>
</div>
<!-- Analytics Tracking -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-71916378-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>