feat: add minimal frontend (accounts, trial balance)
This commit is contained in:
37
frontend/trial-balance.html
Normal file
37
frontend/trial-balance.html
Normal file
@@ -0,0 +1,37 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ja">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<title>試算表</title>
|
||||
<link rel="stylesheet" href="css/style.css" />
|
||||
</head>
|
||||
<body>
|
||||
<h1>試算表</h1>
|
||||
|
||||
<label>
|
||||
期首:
|
||||
<input type="date" id="from" />
|
||||
</label>
|
||||
<label>
|
||||
期末:
|
||||
<input type="date" id="to" />
|
||||
</label>
|
||||
<button id="load">表示</button>
|
||||
|
||||
<table border="1">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>科目</th>
|
||||
<th>期首</th>
|
||||
<th>借方</th>
|
||||
<th>貸方</th>
|
||||
<th>期末</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="tb-body"></tbody>
|
||||
</table>
|
||||
|
||||
<script src="js/api.js"></script>
|
||||
<script src="js/trial-balance.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user