desktop修正

This commit is contained in:
admin
2025-12-14 23:54:48 +09:00
parent f9f5eec35e
commit 74dcb88fe6
25 changed files with 1068 additions and 157 deletions

29
frontend/ledger.html Normal file
View File

@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<title>元帳</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<h1 id="account-title">元帳</h1>
<table>
<thead>
<tr>
<th>日付</th>
<th>摘要</th>
<th>借方</th>
<th>贷方</th>
<th>残高</th>
</tr>
</thead>
<tbody id="ledger-body"></tbody>
</table>
<a href="index.html">← 試算表へ戻る</a>
<script src="js/api.js"></script>
<script src="js/ledger.js"></script>
</body>
</html>