feat: add minimal frontend (accounts, trial balance)

This commit is contained in:
admin
2025-12-13 23:27:38 +09:00
commit 446f17f21a
11 changed files with 149 additions and 0 deletions

25
frontend/accounts.html Normal file
View File

@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<title>科目マスタ</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<h1>科目マスタ</h1>
<table border="1">
<thead>
<tr>
<th>コード</th>
<th>科目名</th>
<th>種別</th>
</tr>
</thead>
<tbody id="accounts-body"></tbody>
</table>
<script src="js/api.js"></script>
<script src="js/accounts.js"></script>
</body>
</html>