Add missing django-allauth templates to prepare for styling
This commit is contained in:
parent
d942632811
commit
68932b75b6
40 changed files with 552 additions and 0 deletions
14
theme/templates/account/new/confirm_password_reset_code.html
Normal file
14
theme/templates/account/new/confirm_password_reset_code.html
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{% extends "account/base_confirm_code.html" %}
|
||||
{% load i18n %}
|
||||
{% load allauth account %}
|
||||
{% block head_title %}
|
||||
{% translate "Password Reset" %}
|
||||
{% endblock head_title %}
|
||||
{% block title %}
|
||||
{% translate "Enter Password Reset Code" %}
|
||||
{% endblock %}
|
||||
{% block recipient %}<a href="mailto:{{ email }}">{{ email }}</a>{% endblock %}
|
||||
{% block action_url %}
|
||||
{% url 'account_confirm_password_reset_code' %}
|
||||
{% endblock %}
|
||||
{% block extra_tags %}email,verification{% endblock %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue