13 lines
325 B
HTML
13 lines
325 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<h1>Formular</h1>
|
|
<h2>{{ form.name.value }}</h2>
|
|
<div class="input-group border-blue-600 border-2 rounded-xl shadow-md">
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<button type="submit">Speichern</button>
|
|
</form>
|
|
</div>
|
|
{% endblock %} |