oidc-fastapi-test/src/oidc_test/templates/base.html
phil 5b6c6f1aac
Some checks failed
/ build (push) Failing after 14s
/ test (push) Successful in 6s
Fix account url, use template for settings
2025-01-26 23:37:56 +01:00

12 lines
362 B
HTML

<html>
<head>
<title>OIDC (FastAPI) test</title>
<link href="{{ url_for('static', path='/styles.css') }}" rel="stylesheet">
<script src="{{ url_for('static', path='/utils.js') }}"></script>
</head>
<body onload="checkPerms('links-to-check')">
<h1>OIDC-test - FastAPI client</h1>
{% block content %}
{% endblock %}
</body>
</html>