-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (25 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Sudoku Solver</title>
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.4.1/underscore-min.js"></script>
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/backbone.js/0.9.2/backbone-min.js"></script>
<link rel="stylesheet" type="text/css" href="sudsol.css">
</head>
<body>
<script type="text/x-underscore-template" id="box-template">
<div id="box-<%= i %>-<%= j %>" class="box cell<%= (i+j) % 2 %>">
<input type="text" size="1" maxlength="1" id="box-<%= i %>-<%= j %>-val"/><br/>
<div id="box-<%= i %>-<%= j %>-possib" class="possib">1,2,3,4,5,6,7,8,9</div>
</div>
</script>
<div class="container">
<h1>Sudoku Solver</h1>
<hr/>
<div id="grille"></div>
</div>
<script type="text/javascript" src="sudsol.js"></script>
</body>
</html>