34 lines
1.2 KiB
HTML
Raw Normal View History

2020-11-11 18:09:23 +11:00
<!DOCTYPE html>
<html lang="en">
2020-11-11 18:03:02 +11:00
<head>
2020-11-11 18:09:23 +11:00
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
2020-11-11 18:03:02 +11:00
<title>To-Do lists</title>
2020-11-11 19:16:23 +11:00
<link href="/static/bootstrap/css/bootstrap.min.css" rel="stylesheet">
2020-11-11 18:03:02 +11:00
</head>
<body>
2020-11-11 18:18:10 +11:00
<div class="container">
<div class="row">
2020-11-11 20:59:29 +11:00
<div class="col-md-6 col-md-offset-3 jumbotron">
2020-11-11 18:18:10 +11:00
<div class="text-center">
<h1>{% block header_text %}{% endblock %}</h1>
<form method="POST" action="{% block form_action %}{% endblock %}">
<input name="item_text" id="id_new_item" placeholder="Enter a to-do item" />
{% csrf_token %}
</form>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 col-md-offset-3">
{% block table %}
{% endblock %}
</div>
</div>
</div>
2020-11-11 18:03:02 +11:00
</body>
</html>