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.
 
 
 
 
 
 

31 lines
1.2 KiB

{% extends "client/base_catalog.html" %}
{% load i18n %}
{% block title %}{% trans "Email confirmation" %}{% endblock %}
{% block page_body %}
<h1>{% trans "Enter your email" %}</h1>
{% if form.errors %}
<p class="error">{% trans "Please correct the errors below:" %}</p>
{% endif %}
<form class="form-inline" action="{% url "social:complete" backend=backend %}" method="post" role="form">{% csrf_token %}
<div class="form-group">
<div class="input-group">
<label class="control-label" for="id_email">{% trans "Email address:" %}</label>
<input class="form-control" id="id_email" type="email" name="email" placeholder="E-mail"/>
{# <input type="hidden" name="valid" value="no">#}
{% if invalid %}
{% trans "Такой Email уже существует." %}
{% endif %}
</div>
</div>
<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 %}