django-allauth-ens/allauth_ens/templates/account/password_set.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

28 lines
736 B
HTML

{% extends "allauth_ens/base.html" %}
{% load i18n %}
{% block title %}{% trans "Set Password" %}{% endblock %}
{% block header-title %}{% trans "Set Password" %}{% endblock %}
{% block messages-extra %}
{% include "allauth_ens/block-messages-form-errors.html" with form_errors=form.non_field_errors %}
{% endblock %}
{% block content %}
<section>
<p>
{% blocktrans %}
Your account does not have a password yet. Add one to authenticate without
third parties.
{% endblocktrans %}
</p>
<form action="{% url "account_set_password" %}" method="post">
{% include "allauth_ens/block-form.html" with form=form %}
<input type="submit" value="{% trans "Set Password" %}">
</form>
</section>
{% endblock %}