Files
2026-05-22 23:05:25 +09:00

48 lines
1.1 KiB
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 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>
<button
onclick="location.href = 'trial-balance.html'"
class="back-button"
style="
margin: 20px 0 0 0;
padding: 8px 16px;
background: #007bff;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 14px;
"
>
← 試算表に戻る
</button>
<script src="js/api.js"></script>
<script src="js/ledger.js"></script>
</body>
</html>