social auth stuff

This commit is contained in:
vabene1111
2021-06-17 22:40:33 +02:00
parent 7725665aa4
commit 0256864904
5 changed files with 56 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
{% extends "base.html" %}
{% load crispy_forms_filters %}
{% load i18n %}
{% block head_title %}{% trans "Set Password" %}{% endblock %}
{% block content %}
<h1>{% trans "Set Password" %}</h1>
<form method="POST" action="{% url 'account_set_password' %}" class="password_set">
{% csrf_token %}
{{ form | crispy }}
<input type="submit" class="btn btn-primary" name="action" value="{% trans 'Set Password' %}"/>
</form>
{% endblock %}