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.
35 lines
1.4 KiB
35 lines
1.4 KiB
{% extends "client/base_catalog.html" %}
|
|
{% load i18n widget_tweaks %}
|
|
|
|
{% block title %}{% trans "Подтверждение email" %}{% endblock %}
|
|
|
|
{% block page_body %}
|
|
|
|
<h1>{% trans "Введите ваш email" %}</h1>
|
|
{#<div cl>#}
|
|
{##}
|
|
{#</div>#}
|
|
{% if form.errors %}
|
|
<p class="error">{% trans "Пожалуйста исправьте ошибки:" %}</p>
|
|
{% endif %}
|
|
{# {% url "social:complete" backend=backend %}#}
|
|
<form class="twitter_email_form" action="." method="post" role="form">{% csrf_token %}
|
|
{% for field in form %}
|
|
<div class="control-group {% if field.errors %}error{% endif %}">
|
|
{# <label class="control-label"><b>{{ field.label }}:</b></label>#}
|
|
<div class="controls">
|
|
{# {{ field }}#}
|
|
{% render_field field placeholder=field.label %}
|
|
<span class="help-inline">{{ field.errors }}</span>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
<button class="btn" type="submit">{% trans "Подтвердить" %}</button>
|
|
</form>
|
|
|
|
{% endblock %}
|
|
|
|
{% block content-related %}
|
|
<p>{% trans "Пожалуйста введите ваш email. Мы вышлем на него письмо чтобы активировать аккаунт." %}</p>
|
|
{#<p>{% trans "Please enter your valid email, to activate account we will send you an email on this e-mail address" %}</p>#}
|
|
{% endblock %}
|
|
|