-
Notifications
You must be signed in to change notification settings - Fork 0
/
task-list.html
60 lines (58 loc) · 1.9 KB
/
task-list.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>期末面談用やったことリスト</title>
<link rel="stylesheet" href="task-list.css">
</head>
<body>
<h1>期末面談用やったことリスト</h1>
<!-- タスク入力エリアのdiv -->
<div class = "intputarea">
<div>
<p>実施月、進捗、タイトル、タスク概要を入力してください</p>
<input id="taskmonth" type="text" placeholder="--月--日">
<select id="taskstatus">
<option value="済">済</option>
<option value="進行中">進行中</option>
<option value="未着手">未着手</option>
</select>
<button id="submit">登録</button>
</div>
<div>
<input id="tasktitle" type="" placeholder="タイトル">
</div>
<div>
<textarea id="taskdetail" rows="5" placeholder="概要"></textarea>
</div>
</div>
<!-- タスクリストの表示エリア -->
<div class = "tasklistarea">
<table>
<thead>
<tr>
<th>実地月</th>
<th>進捗</th>
<th>タイトル</th>
<th>タスク概要</th>
<th>削除ボタン</th>
</tr>
</thead>
<tbody id="tasklist">
<!--
<tr>データ例
<td>2022-02</td>
<td>済</td>
<td>hogehoge</td>
<td>ほげほげ</td>
<td><button id="delete">削除</button></td>
</tr>
-->
</tbody>
</table>
</div>
<script src="task-list.js"></script>
</body>
</html>