11 lines
312 B
HTML
11 lines
312 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<div class="input-group border-blue-600 border-2 rounded-xl shadow-md mt-12">
|
|
<form method="post" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<button type="submit">Speichern</button>
|
|
</form>
|
|
</div>
|
|
{% endblock %} |