-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtesting.html
More file actions
41 lines (37 loc) · 1.44 KB
/
Copy pathtesting.html
File metadata and controls
41 lines (37 loc) · 1.44 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
<!DOCTYPE html>
<html>
<head>
<title>Cryptograms</title>
<link rel="stylesheet" href="styles.css" />
<head>
<body>
<div id="game-space">
<p class="quotes" id="encrypted-quote">Waiting...</p>
<p class="quotes" id="evaluated-quote"></p>
<p> Make a guess:<br>
<form action="" id="guess-form">
<input type="text" id="guess-from" maxlength="1" size="1">
maps to
<input type="text" id="guess-to" maxLength="1" size="1">
<input type="submit" id="guess-button">
</form>
</p>
</div>
<p id="player-info"></p>
<button id="play-again">Play again</button>
<input type="file" id="quoteFile"></input>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript">
if (typeof jQuery == 'undefined') {
document.write(unescape("%3Cscript src='/js/jquery-2.0.3.min.js' type='text/javascript'%3E%3C/script%3E"));
}
</script>
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.5.2/underscore-min.js"></script>
<script type="text/javascript">
if (typeof underscore == 'undefined') {
document.write(unescape("%3Cscript src='/js/underscore.js' type='text/javascript'%3E%3C/script%3E"));
}
</script>
<script type="text/javascript" language="javascript" src="crypto.js"></script>
</body>
</html>