Files
njts-accounting-core/frontend/accounts.html
2026-02-07 14:25:28 +09:00

27 lines
562 B
HTML

<!doctype html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<script src="js/auth.js"></script>
<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>