You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1019 B
38 lines
1019 B
<div class="guestbook-form">
|
|
<form id="guestbook_form" action="" method="post">
|
|
{% csrf_token %}
|
|
|
|
{{ form.non_field_errors }}
|
|
|
|
<div class="field">
|
|
{{ form.name.label_tag }}
|
|
{{ form.name }}
|
|
{{ form.name.errors }}
|
|
</div>
|
|
|
|
<div class="field">
|
|
{{ form.email.label_tag }}
|
|
{{ form.email }}
|
|
{{ form.email.errors }}
|
|
</div>
|
|
|
|
<div class="field">
|
|
{{ form.message.label_tag }}
|
|
{{ form.message }}
|
|
{{ form.message.errors }}
|
|
</div>
|
|
|
|
<div class="field">
|
|
{{ form.captcha.label_tag }}
|
|
{{ form.captcha }}
|
|
|
|
<a href="{% url 'captcha-refresh' %}" class="js-captcha-refresh" alt="Обновить" title="Обновить"></a>
|
|
|
|
{{ form.captcha.errors }}
|
|
</div>
|
|
|
|
<div class="buttons">
|
|
<input type="submit" value="Отправить" />
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|