providers/oauth2: fix incorrect background set on end session screen

This commit is contained in:
Jens Langhammer 2020-12-19 14:24:28 +01:00
parent 1ed5d5da35
commit 5f3ab22bea
1 changed files with 10 additions and 0 deletions

View File

@ -4,6 +4,16 @@
{% load i18n %}
{% load authentik_utils %}
{% block head %}
{{ block.super }}
<style>
.pf-c-background-image::before {
background-image: url("{% static 'dist/assets/images/flow_background.jpg' %}");
background-position: center;
}
</style>
{% endblock %}
{% block title %}
{% trans 'End session' %}
{% endblock %}