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.
27 lines
970 B
27 lines
970 B
{% extends "client/base_catalog.html" %}
|
|
|
|
{% block title %}Email confirmation{% endblock %}
|
|
|
|
{% block page_body %}
|
|
|
|
<h1>Enter your email</h1>
|
|
|
|
{% if form.errors %}
|
|
<p class="error">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">Email address:</label>
|
|
<input class="form-control" id="id_email" type="email" name="email" placeholder="E-mail"/>
|
|
{# <input type="hidden" name="valid" value="no">#}
|
|
</div>
|
|
</div>
|
|
<button class="btn btn-default" type="submit">Submit</button>
|
|
</form>
|
|
|
|
{% endblock %}
|
|
|
|
{% block content-related %}
|
|
<p>Please enter your valid email, to activate account we will send you an email on this e-mail address</p>
|
|
{% endblock %} |