client-oidc/templates/api.html

13 lines
245 B
HTML

{% extends "base.html" %}
{% block content %}
{% if not_auth_warn %}
<div class="alert alert-danger" role="alert">Not authorized</div>
{% else %}
<p>The API content</p>
{% endif %}
<a href="/" class="btn btn-dark">Back</a>
{% endblock %}