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