Files
account_store/templates/blocks/static_pages_blocks/b_advertisement.html
2023-11-30 13:43:07 +03:00

79 lines
3.2 KiB
HTML

{% load i18n %}
{% trans "Имя" as p_name %}
{% trans "Имя" as p_name %}
<div class="top_block_static_wrapper">
<div class="top_block_static">
<h2 id=title_static>{{ page.title }}</h2>
<span id="sub_title_static">{{ page.description }}</span>
<div class="button_container">
<a class="btn_a_anchor partners" href="#scroll_to_form" id="how_it_work_b">
<div class="text_in_btn_a_anchor">{% translate "Узнать подробнее" %}</div>
</a>
</div>
</div>
</div>
<div class="mid_block_static">
<h2 id="title_static">{% translate "Почему это выгодно?" %}</h2>
<div class="benefit_img_about_service">
<figure>
<img src="/static/img/svg/pc_img.svg" alt="">
<figcaption>{% translate "Полное брендирвоание страницы или раздела" %}</figcaption>
</figure>
<figure>
<img src="/static/img/svg/ad_img.svg" alt="">
<figcaption>{% translate "Реклама для целевой аудитории" %}</figcaption>
</figure>
<figure>
<img src="/static/img/svg/offer_img.svg" alt="">
<figcaption>{% translate "Индивидуальное согласование цены при объеме" %}</figcaption>
</figure>
<figure>
<img src="/static/img/svg/uniq_user_img.svg " alt="">
<figcaption>{% translate "Более чем 10 000 уникальных посещений в день" %}</figcaption>
</figure>
<figure>
<img src="/static/img/svg/effective_img.svg" alt="">
<figcaption >{% translate "Высокая эффективность" %}</figcaption>
</figure>
</div>
</div>
<div class="bottom_block_static anchor" id="scroll_to_form">
<h2 id=title_static>{% translate "Стоимость" %}</h2>
<span id="sub_title_static">{% translate "Оставьте заявку и получите персональное коммерческое предложение" %}</span>
<form data-name="msg_from_advertisement">
<div class="inputs_l">
<input name="name" type="text" placeholder="{{ p_name }}" {% if form.data.username %} value="{{ form.data.username }}"{% endif %}>
{% if form.username and form.errors.username %}
<span>{{ form.errors.username }}</span>
{% endif %}
</div>
<div class="inputs_l">
<input name="phone" type="number" placeholder="{% translate 'Телефон' %}"{% if form.data.tel %} value="{{ form.data.tel }}"{% endif %}>
{% if form.tel and form.errors.tel %}
<span>{{ form.errors.tel }}</span>
{% endif %}
</div>
<div class="button_register">
<button id="request_btn" onclick="RequestCommercialOffer(this)">{% translate "Оставить заявку" %}</button>
</div>
</form>
</div>