feat: add minimal frontend (accounts, trial balance)
This commit is contained in:
25
frontend/accounts.html
Normal file
25
frontend/accounts.html
Normal 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>
|
||||
Reference in New Issue
Block a user