46 lines
963 B
HTML
46 lines
963 B
HTML
<!doctype html>
|
|
<html lang="ja">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<script src="js/auth.js"></script>
|
|
<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>
|
|
|
|
<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>
|