-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (58 loc) · 1.66 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
<!DOCTYPE html>
<html>
<head>
<link href="css/reset.css" type="text/css" rel="stylesheet" />
<link href="css/main.css" type="text/css" rel="stylesheet" />
<script
src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.10.2/underscore-min.js" integrity="sha512-HKvDCFVKg8ZPGjecy6on7UECEpE76Y86h3GaE4JMCz+deFWdjcW/tWnh0hCfaBvURvlOa9f5CNVzt7EFkulYbw==" crossorigin="anonymous"></script>
<title>FF2 Card Mapper</title>
</head>
<body>
<div id="wrapper">
<div id="page_header">
<button id="reset_app_btn">Start Over</button>
<h1>FF2 Card Mapper</h1>
</div>
<div id="leftcol">
<button id="clear_map_btn">Clear</button>
<h2 id="current_map_num">Map </h2>
<table id="map_table" data-map="0">
<tr id="row0">
<td id="cell_0_0"></td>
<td id="cell_0_1"></td>
<td id="cell_0_2"></td>
<td id="cell_0_3"></td>
</tr>
<tr id="row1">
<td id="cell_1_0"></td>
<td id="cell_1_1"></td>
<td id="cell_1_2"></td>
<td id="cell_1_3"></td>
</tr>
<tr id="row2">
<td id="cell_2_0"></td>
<td id="cell_2_1"></td>
<td id="cell_2_2"></td>
<td id="cell_2_3"></td>
</tr>
<tr id="row3">
<td id="cell_3_0"></td>
<td id="cell_3_1"></td>
<td id="cell_3_2"></td>
<td id="cell_3_3"></td>
</tr>
</table>
</div>
<div id="rightcol">
<button id="add_page_btn">+</button>
<ul id="pattern_list">
<li id="map_0" class="selected">0</li>
</ul>
</div>
</div>
<script src="js/main.js"></script>
</body>
</html>