You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.9 KiB
51 lines
1.9 KiB
{% load static %}
|
|
{% load i18n %}
|
|
|
|
<!--Завершение регистрации-->
|
|
|
|
<div id="end-reg" class="popup-window">
|
|
<header class="clearfix">
|
|
<div class="pw-title">Завершите регистрацию</div>
|
|
</header>
|
|
<div class="pw-body clearfix">
|
|
<form id="end-reg-form" class="pw-form" action="/register-complete/" method="post">{% csrf_token %}
|
|
<ul class="end_reg_list">
|
|
<li class="input_top">
|
|
{{ form.country }}
|
|
</li>
|
|
<li class="input_top">
|
|
{{ form.city }}
|
|
</li>
|
|
<li>
|
|
<table>
|
|
<tr>
|
|
<th>Номер телефона</th>
|
|
<td class="width1">
|
|
{{ form.code_country }}
|
|
<p>{{ form.code_country.label }}</p>
|
|
</td>
|
|
<td class="width2">
|
|
{{ form.code_city }}
|
|
<p>{{ form.code_city.label }}</p>
|
|
</td>
|
|
<td class="width3">
|
|
{{ form.phone }}
|
|
<p>{{ form.phone.label }}</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>www.expomap.ru/</th>
|
|
<td class="input_bottom" colspan="3">
|
|
{{ form.url }}
|
|
</td>
|
|
</tr>
|
|
|
|
</table>
|
|
</li>
|
|
<li><button type="submit" class="icon-check">завершить регистрацию</button></li>
|
|
</ul>
|
|
</form>
|
|
</div>
|
|
|
|
</div>
|
|
<!--Завершение регистрации--
|
|
|