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.
32 lines
1.1 KiB
32 lines
1.1 KiB
{% extends "client/base_catalog.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans "Email confirmation" %}{% endblock %}
|
|
|
|
{% block page_body %}
|
|
|
|
<h1>{% trans "Enter your email" %}</h1>
|
|
<div cl>
|
|
|
|
</div>
|
|
{% if form.errors %}
|
|
<p class="error">{% trans "Please correct the errors below:" %}</p>
|
|
{% endif %}
|
|
{# {% url "social:complete" backend=backend %}#}
|
|
<form class="form-inline" 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 }}
|
|
<span class="help-inline">{{ field.errors }}</span>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
<button class="btn btn-default" type="submit">{% trans "Submit" %}</button>
|
|
</form>
|
|
|
|
{% endblock %}
|
|
|
|
{% block content-related %}
|
|
<p>{% trans "Please enter your valid email, to activate account we will send you an email on this e-mail address" %}</p>
|
|
{% endblock %}
|
|
|