django-allauth-ens/allauth_ens/templates/account/password_set.html

29 lines
736 B
HTML
Raw Normal View History

{% extends "allauth_ens/base.html" %}
2017-09-16 02:32:42 +02:00
{% 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 %}
2017-09-16 02:32:42 +02:00
{% 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 %}
2017-09-16 02:32:42 +02:00
<input type="submit" value="{% trans "Set Password" %}">
</form>
</section>
{% endblock %}