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

12 lines
339 B
HTML

<html>
<head>
<title>Dashboard</title>
</head>
<body>
<h1>Dashboard | Start a new to-do list</h1>
<form method="POST" action="/apps/dashboard/newlist">
<input name="item_text" id="id-new-item" placeholder="Enter a to-do item">
{% csrf_token %}
</form>
</body>
</html>