Fix registration form
This commit is contained in:
parent
e0435df07d
commit
0da9d981c8
|
@ -1,6 +1,7 @@
|
|||
{% extends "helper_base.html" %}
|
||||
|
||||
{% block title %}Registrierung{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<form action="" method="post">
|
||||
{% csrf_token %}
|
||||
|
@ -16,11 +17,11 @@
|
|||
{{ field }}
|
||||
</div>
|
||||
{% endif %}
|
||||
{%for error in field.errors %}
|
||||
<p class="is-danger help"> {{ error }} </div>
|
||||
{% for error in field.errors %}
|
||||
<p class="help is-danger"> {{ error }}</p>
|
||||
{% endfor %}
|
||||
{% if field.help_text %}
|
||||
<p class="is-size-7 mt-1">{{ field.help_text }}</p>
|
||||
<p class="help">{{ field.help_text }}</p>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endfor %}
|
||||
|
|
Loading…
Reference in New Issue