Это login.html
{% extends "base.html" %}
{% load i18n %}
{% load account socialaccount %}
{% block head_title %}{% trans "Sign In" %}{% endblock %}
{% block content %}
{% trans "Sign In" %}
{% get_providers as socialaccount_providers %}
{% if socialaccount_providers %}
{% blocktrans with site.name as site_name %}Please sign in with one
of your existing third party accounts. Or, sign up
for a {{ site_name }} account and sign in below:{% endblocktrans %}
- {% include "socialaccount/snippets/provider_list.html" with process="login" %}
{% include "socialaccount/snippets/login_extra.html" %}
{% else %}
{% blocktrans %}If you have not created an account yet, then please
sign up first.{% endblocktrans %}
{% endif %}
{% csrf_token %}
Username:
Password:
{{ form.username }}
{% if redirect_field_value %}
{% endif %}
{% trans "Forgot Password?" %}
{% trans "Sign In" %}
{% endblock %}
Это Signup.html
{% extends "account/base.html" %}
{% load i18n %}
{% block head_title %}{% trans "Signup" %}{% endblock %}
{% block content %}
{% trans "Sign Up" %}
{% blocktrans %}Already have an account? Then please sign in.{% endblocktrans %}
{% csrf_token %}
Username:
Email:
Password:
Password Again:
{% if redirect_field_value %}
{% endif %}
{% trans "Sign Up" %} »
{% endblock %}
А это logout.html
{% extends "account/base.html" %}
{% load i18n %}
{% block head_title %}{% trans "Sign Out" %}{% endblock %}
{% block content %}
{% trans "Sign Out" %}
{% trans 'Are you sure you want to sign out?' %}
{% csrf_token %}
{% if redirect_field_value %}
{% endif %}
{% trans 'Sign Out' %}
{% endblock %}
Подробнее здесь: https://stackoverflow.com/questions/742 ... rriding-al