7 lines
780 B
HTML
7 lines
780 B
HTML
{% load static %}
|
||
<input type="checkbox" onclick="deleteErrorsInput(this)" class="check_box_form_feedback{% if feedback_form.errors.agreement %} error{% endif %} el_form_feedback" id="id_agreement" name="agreement" {% if feedback_form.initial.agreement %}checked{% endif %} />
|
||
<label class="label_feedback_form_checkbox{% if feedback_form.errors.agreement %} error{% endif %} standart_txt" for="id_agreement">
|
||
Принимаю <a href="" class="a_user_agreement">Пользовательское соглашение</a> и соглашаюсь с <a href="" class="a_user_agreement">Условиями обработки личных данных</a>
|
||
</label>
|
||
{% if feedback_form.errors.company %}<div class="error_input_html"></div>{% endif %}
|
||
<div class="clear_both"></div> |