forked from ninjabunny/KodeNames
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (43 loc) · 1.87 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>KodeNames</title>
<meta name="description" content="Kodenames">
<meta name="author" content="SitePoint">
<link rel="stylesheet" href="styles/styles.css?v=1.0">
</head>
<body>
<div>
<div id='header'>
<a href="https://github.com/ninjabunny/KodeNames" target='_blank'>Kodenames</a>
<span id="redScore"></span>
<span id="blueScore"></span>
<input type="text" id="seed" placeholder="seed" size="8" autofocus>
<button id="reset" onclick="fire()">Reset</button>
<span id="confirmText">confirm?</span>
<input type="checkbox" id="confirm">
<select id='gameMode'>
<option value="default">Default Word Set</option>
<option value="spanish">Spanish Word Set</option>
<option value="2knouns">2K Nouns</option>
<option value="movies">Top 250 Movies</option>
<option value="custom">Custom Words</option>
</select>
<span id="google_translate_element"></span>
<button id="spymaster" onclick="spyMaster()">SpyMaster</button>
</div>
</div>
<div id="board"></div>
<script src="https://code.jquery.com/jquery-3.1.0.min.js" integrity="sha256-cCueBR6CsyA4/9szpPfrX3s49M9vUU5BgtiJj06wt/s=" crossorigin="anonymous"></script>
<script type="text/javascript">
function googleTranslateElementInit() {
new google.translate.TranslateElement({pageLanguage: 'en', layout: google.translate.TranslateElement.InlineLayout.SIMPLE, gaTrack: true, gaId: 'UA-48676831-6'}, 'google_translate_element');
}
</script><script type="text/javascript" src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
<script src="scripts/data.js"></script>
<script src="scripts/seedrandom.js"></script>
<script src="scripts/index.js"></script>
<script src="scripts/analytics.js"></script>
</body>
</html>