This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2020-02-24 13:19:02 +00:00
|
|
|
{% extends 'login/base.html' %}
|
|
|
|
|
|
|
|
{% load static %}
|
|
|
|
{% load i18n %}
|
2020-05-15 08:54:31 +00:00
|
|
|
{% load passbook_utils %}
|
2020-02-24 13:19:02 +00:00
|
|
|
|
|
|
|
{% block card_title %}
|
|
|
|
{% trans error %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block card %}
|
|
|
|
<form>
|
|
|
|
<h3>{% trans description %}</h3>
|
|
|
|
{% if 'back' in request.GET %}
|
|
|
|
<a href="{% back %}" class="btn btn-primary btn-block btn-lg">{% trans 'Back' %}</a>
|
|
|
|
{% endif %}
|
|
|
|
</form>
|
|
|
|
{% endblock %}
|