Files
python-tdd/templates/apps/dashboard/home.html

15 lines
394 B
HTML
Raw Normal View History

<html>
<head>
<title>To-Do lists</title>
</head>
<body>
<h1>Your To-Do List</h1>
<form method="POST">
<input name="item-text" id="id-new-item" placeholder="Enter a to-do item">
{% csrf_token %}
</form>
<table id="id-list-table">
<tr><td>1: {{ new_item_text }}</td></tr>
</table>
</body>
</html>