-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModification.html
More file actions
27 lines (27 loc) · 877 Bytes
/
Copy pathModification.html
File metadata and controls
27 lines (27 loc) · 877 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>JBCXML</title>
<link rel="stylesheet" href="Modification.css"/>
<script src="Modification.js" type="text/javascript"></script>
</head>
<body onload="init(fileName)">
<div class="container" id="container">
<table class="table" id="table">
<tr>
<th>Title</th>
<th>Composer</th>
<th>File</th>
<th>Actions</th>
</tr>
</table>
<div class="buttons" id="buttons">
<button class="button" id="add" onclick="add()">Add a record</button>
<button class="button" id="saveAll" onclick="saveFile()">Save</button>
<input class="input" id="fileNameInput"/>
<button class="button" id="load" onclick="init(document.getElementById('fileNameInput').value)">Load</button>
</div>
</div>
</body>
</html>