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
20
theme/templates/account/new/confirm_login_code.html
Normal file
20
theme/templates/account/new/confirm_login_code.html
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{% extends "account/base_confirm_code.html" %}
|
||||
{% load i18n %}
|
||||
{% load allauth account %}
|
||||
{% block head_title %}
|
||||
{% translate "Sign In" %}
|
||||
{% endblock head_title %}
|
||||
{% block title %}
|
||||
{% translate "Enter Sign-In Code" %}
|
||||
{% endblock %}
|
||||
{% block recipient %}
|
||||
{% if email %}
|
||||
<a href="mailto:{{ email }}">{{ email }}</a>
|
||||
{% else %}
|
||||
<a href="tel:{{ phone }}">{{ phone }}</a>
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
{% block action_url %}
|
||||
{% url 'account_confirm_login_code' %}
|
||||
{% endblock %}
|
||||
{% block extra_tags %}login{% endblock %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue