Files
Aerbim/templates/widgets/w_checkbox_f_feedback.html
2023-12-10 15:40:12 +03:00

7 lines
780 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% 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>