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-28 10:41:28 +00:00
|
|
|
{% extends 'login/base.html' %}
|
|
|
|
|
|
|
|
{% load static %}
|
|
|
|
{% load i18n %}
|
2020-05-15 08:54:31 +00:00
|
|
|
{% load passbook_utils %}
|
2020-02-28 10:41:28 +00:00
|
|
|
|
|
|
|
{% block card_title %}
|
|
|
|
{{ title }} <span>(403)</span>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block card %}
|
|
|
|
<form>
|
|
|
|
<h3>{{ main }}</h3>
|
|
|
|
{% if no_referer %}
|
|
|
|
<p>{{ no_referer1 }}</p>
|
|
|
|
<p>{{ no_referer2 }}</p>
|
|
|
|
<p>{{ no_referer3 }}</p>
|
|
|
|
{% endif %}
|
|
|
|
{% if no_cookie %}
|
|
|
|
<p>{{ no_cookie1 }}</p>
|
|
|
|
<p>{{ no_cookie2 }}</p>
|
|
|
|
{% endif %}
|
|
|
|
{% if 'back' in request.GET %}
|
|
|
|
<a href="{% back %}" class="btn btn-primary btn-block btn-lg">{% trans 'Back' %}</a>
|
|
|
|
{% endif %}
|
|
|
|
</form>
|
|
|
|
{% endblock %}
|