-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtesting.html
More file actions
35 lines (32 loc) · 841 Bytes
/
testing.html
File metadata and controls
35 lines (32 loc) · 841 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
<title>TaskTrek</title>
</head>
<body>
<div class="content">
<h1>Task </h1>
<table>
<tr>
<th>
Task
</th>
<th>Added</th>
<th>Actions</th>
</tr>
<tr>
<td>content</td>
<td>data</td>
<td>more</td>
</tr>
</table>
<form action="">
<input type="text" name="content" id="content"/>
<input type="submit" value="add task" id="btn_add"/>
</form>
</div>
</body>
</html>