38 lines
751 B
HTML
38 lines
751 B
HTML
<!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>
|