Files
njts-accounting-core/frontend/accounts.html
2026-05-22 23:05:25 +09:00

29 lines
692 B
HTML

<!doctype html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="js/auth.js"></script>
<title>科目マスタ</title>
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="/css/mobile.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>