-
Notifications
You must be signed in to change notification settings - Fork 1
/
original.html
106 lines (99 loc) · 3.08 KB
/
original.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
<!DOCTYPE html>
<head>
<title>Tic.Tac.Toe</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link href="/static/style.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="static/helper.js"></script>
<script type="text/javascript" src="static/prototype.js"></script>
<link href="/static/slider.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="main">
<div class="header">
<div class="header_resize">
<div class="logo">
<h1><a href="app.html">Tic<span>Tac</span>Toe</a><br/>
</h1>
<div id="menu">
<div id="m-top">
<ul>
<li><a href="/">Home</a></li>
<li class="active"><a href="/original">Original</a></li>
<li><a href="/vscomp">Vs. Computer</a><li>
<li><a href="/crazy">Cr@Zy</a></li>
<li><a href="/info">Game Info</a></li>
<li><a href="/developers">Developers</a></li>
</ul>
</div>
<div id="m-slider">
<div id="slider"></div>
</div>
</div>
<div class="game">
<table><tr><td>
<form action="/original" method="post">
<table border="">
<tr>
<td id ="c1r1">
<button value="c1r1" name="block" style={{button_color.0.0}}>
<img src="/static/{{c1r1}}">
</button>
</td>
<td id ="c2r1">
<button value="c2r1" name="block" style={{button_color.0.1}}>
<img src="/static/{{c2r1}}">
</button>
</td>
<td id ="c3r1">
<button value="c3r1" name="block" style={{button_color.0.2}}>
<img src="/static/{{c3r1}}">
</button>
</td>
</tr>
<tr>
<td id ="c1r2">
<button value="c1r2" name="block" style={{button_color.1.0}}>
<img src="/static/{{c1r2}}">
</button>
</td>
<td id ="c2r2">
<button value="c2r2" name="block" style={{button_color.1.1}}>
<img src="/static/{{c2r2}}">
</button>
</td>
<td id ="c3r2">
<button value="c3r2" name="block" style={{button_color.1.2}}>
<img src="/static/{{c3r2}}">
</button>
</td>
</tr>
<tr>
<td id ="c1r3">
<button value="c1r3" name="block" style={{button_color.2.0}}>
<img src="/static/{{c1r3}}">
</button>
</td>
<td id ="c2r3">
<button value="c2r3" name="block" style={{button_color.2.1}}>
<img src="/static/{{c2r3}}">
</button>
</td>
<td id ="c3r3">
<button value="c3r3" name="block" style={{button_color.2.2}}>
<img src="/static/{{c3r3}}">
</button>
</td>
</tr>
</table>
<input type="hidden" name="StringMatrix" value={{StringMatrix}}>
<input type="text" name="WinMessage" value={{Winner}}>
</form>
<form>
<input type="submit" name="Reset" method ="reset" value="Reset">
</form>
</div>
</div>
</div>
</div>
</body>
</html>