31 lines
1.1 KiB
HTML
31 lines
1.1 KiB
HTML
{% load staticfiles form_tools %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Tapper toevoegen</title>
|
|
<link rel="stylesheet" href="{% static 'css/bootstrap.css' %}"/>
|
|
<link rel="stylesheet" href="{% static 'css/bootstrap-datepicker.css' %}"/>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col col-12">
|
|
<div class="card">
|
|
<h5 class="card-header">Tapper toevoegen</h5>
|
|
<div class="card-body">
|
|
<form method="POST" action="">
|
|
{% csrf_token %}
|
|
<div class="form-group">
|
|
<label for="{{ form.name.id_for_label }}">Wie is er laks geweest?</label>
|
|
{{ form.name|add_class:"form-control" }}
|
|
</div>
|
|
<input class="btn btn-danger" type="submit" value="Toevoegen"/>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |