blob: d4fca8a9ecaf6f3205ce5992965b621cf155e2d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>SRS Anywhere Card Editor</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="status-section">
<button id="save-button">Download JSON</button>
<input type="file" id="cards-input" accept=".json" />
</div>
<h1>SRS Anywhere Card Editor</h1>
<div id="table-container"></div>
<script src="card-editor.js"></script>
</body>
</html>
|