mordor/oauth/templates/oauth/failed.html
2021-05-17 20:50:02 +02:00

12 lines
183 B
HTML

{% extends "base.html" %}
{% block title %}Login Failed{% endblock %}
{% block content %}
<h2>Login Failed</h2>
{% if error %}
<h3>{{ error }}</h3>
{% endif %}
{% endblock %}