48 lines
909 B
HTML
48 lines
909 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="journal-date" />
|
||
</label>
|
||
|
||
<br /><br />
|
||
|
||
<label>
|
||
摘要:
|
||
<input type="text" id="description" size="40" />
|
||
</label>
|
||
|
||
<br /><br />
|
||
|
||
<table id="lines-table">
|
||
<thead>
|
||
<tr>
|
||
<th>科目ID</th>
|
||
<th>借方</th>
|
||
<th>贷方</th>
|
||
<th></th>
|
||
</tr>
|
||
</thead>
|
||
<tbody></tbody>
|
||
</table>
|
||
|
||
<button onclick="addLine()">+ 行追加</button>
|
||
|
||
<br /><br />
|
||
|
||
<button onclick="submitJournal()">保存</button>
|
||
<a href="index.html">← 戻る</a>
|
||
|
||
<script src="js/api.js"></script>
|
||
<script src="js/journal.js"></script>
|
||
</body>
|
||
</html>
|