52 lines
1.8 KiB
HTML
52 lines
1.8 KiB
HTML
{% load i18n %}
|
|
|
|
<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">
|
|
<button id="more_button">{% translate "Узнать подробнее" %}</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="mid_block_static">
|
|
<h2 id="title_static">{% translate "Почему это выгодно?" %}</h2>
|
|
{% include "blocks/static_pages_blocks/b_benefit_img_about_service.html" %}
|
|
</div>
|
|
|
|
<div class="bottom_block_static">
|
|
<h2 id=title_static>{% translate "Стоимость" %}</h2>
|
|
<span id="sub_title_static">{% translate "Оставьте заявку и получите персональное коммерческое предложение" %}</span>
|
|
|
|
<form>
|
|
<div class="inputs_l">
|
|
<input name="username" type="text" placeholder="Имя" {% 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="tel" type="number" placeholder="Телефон"{% 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 onclick="RequestCommercialOffer(this)">{% translate "Оставить заявку" %}</button>
|
|
</div>
|
|
</form>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|