20 lines
727 B
HTML
20 lines
727 B
HTML
{% load static %}
|
|
{% load i18n %}
|
|
|
|
<form class="clear_form" data-name="msg_from_footer">
|
|
<div class="footer_input_wrap">
|
|
<input class="footer_input"
|
|
name="email"
|
|
type="email"
|
|
{% if form.data.email %} value="{{ form.data.email }}"{% endif %}
|
|
placeholder="{% trans "Введите ваш e-mail" %}">
|
|
<button onclick="RequestCommercialOffer(this)" id="footer_input_button">
|
|
<img class="svg" src="/static/img/svg/CaretCircleRight.svg">
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
{% if form.errors.email %}
|
|
<span id="error_footer">{{ form.errors.email }}</span>
|
|
{% endif %} |