django-allauth-ens/allauth_ens/templates/socialaccount/signup.html
Aurélien Delobelle fe21f9c6af Eww, hard to sum up…
- Update django-allauth-cas to the last version.
- Add docs (README, example/README).
- Add tests for Clipper provider.
- Add tests to check templates do not contain syntax error.
- Add the last missing templates to override all allauth's displayable
  templates.
- Improve stylesheets.
2018-01-16 16:57:18 +01:00

26 lines
792 B
HTML

{% extends "allauth_ens/base.html" %}
{% load i18n %}
{% block title %}{% trans "Signup" %}{% endblock %}
{% block header-title %}{% trans "Signup" %}{% endblock %}
{% block content %}
<section>
<p>
{% blocktrans with provider_name=account.get_provider.name %}
You are about to use your {{ provider_name }} account to login.
As a final step, please complete the following form:
{% endblocktrans %}
</p>
<form action="{% url "socialaccount_signup" %}" method="post">
{% include "allauth_ens/block-form.html" with form=form %}
<input type="submit" value="{% trans "Sign Up" %}">
{% if redirect_field_value %}
<input type="hidden" name="{{ redirect_field_name }}" value="{{ redirect_field_value }}">
{% endif %}
</form>
</section>
{% endblock %}