-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
104 lines (93 loc) · 3.59 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
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
<!--
FFDoku is a Sudoku game primarily designed for the Firefox OS
Copyright (C) 2012-2013 Erwan GUYADER <taratatach@mozfr.org>, Antoine DUPARAY <antoine.duparay@mozfr.org>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<!DOCTYPE html>
<html manifest="manifest.appcache">
<head>
<title>FFDoku</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
<link rel="stylesheet" href="style/design.css" />
<link rel="stylesheet" href="shared/style/headers.css" />
<link rel="stylesheet" href="shared/style/buttons.css" />
<link rel="stylesheet" href="shared/style/action_menu.css" />
<link rel="stylesheet" href="shared/style_unstable/toolbars.css">
</head>
<body>
<section id="game-view" role="region">
<header>
<h1>FFDoku</h1>
</header>
<div id="content">
<section>
<table id="grid"></table>
</section>
<section id="commands">
<table id="numbers">
<tr>
<td class="insert">1</td>
<td class="insert">2</td>
<td class="insert">3</td>
</tr>
<tr>
<td class="insert">4</td>
<td class="insert">5</td>
<td class="insert">6</td>
</tr>
<tr>
<td class="insert">7</td>
<td class="insert">8</td>
<td class="insert">9</td>
</tr>
</table>
<p><button id="erase" class="danger">Erase</button></p>
</section>
<section id="gameInfos">
<form role="dialog" data-type="action" onsubmit="return false;">
<header>New Game</header> <!-- this header is optional -->
<menu>
<button role="level" value="easy"> Easy </button>
<button role="level" value="medium"> Medium </button>
<button role="level" value="hard"> Hard </button>
<button role="cancel"> Cancel </button>
</menu>
</form>
</section>
<section id="about">
<p>
Copyright © 2012-2013<br />
Erwan Guyader<br />
&<br />
Antoine Duparay<br />
Licence AGPL v3 - <a href="https://github.com/taratatach/FFDoku" target="_blank">Source</a>
</p>
<p><button id="ok">OK</button></p>
</section>
</div>
<footer>
<div id="action-menu" role="toolbar">
<ul>
<li><button id="newGame" class="icon-new">New Game</button></li>
<li><button id="reset" class="icon-reset">Reset</button></li>
<li><button id="dispAbout" class="icon-about">About</button></li>
</ul>
</div>
</footer>
</section>
<script src="script/utils.js"></script>
<script src="script/Game.class.js"></script>
<script src="script/Grid.class.js"></script>
<script src="script/load.js"></script>
</body>
</html>