BasicOIDC/templates/login/prov_login_error.html
Pierre Hubert 2cca64f9b8
Some checks failed
continuous-integration/drone/push Build is failing
Handle OIDC errors
2023-04-25 18:18:48 +02:00

13 lines
352 B
HTML

{% extends "base_login_page.html" %}
{% block content %}
<div class="alert alert-danger" style="margin-bottom: 10px;">
<strong>Authentication failed!</strong>
<p style="margin-top: 10px; text-align: justify;">{{ message }}</p>
</div>
<a href="/login?redirect={{ _p.redirect_uri.get_encoded() }}">Go back to login</a>
{% endblock content %}