providers/oidc: add error template

This commit is contained in:
Jens Langhammer 2020-02-24 14:19:02 +01:00
parent b743736c26
commit 484dd6de09
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
{% extends 'login/base.html' %}
{% load static %}
{% load i18n %}
{% load utils %}
{% 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 %}