oidc-fastapi-test/src/oidc_test/templates/base.html
phil c5bb4f4319
All checks were successful
/ build (push) Successful in 6s
/ test (push) Successful in 5s
Refactor most code, isolate authlib somehow
2025-02-09 06:20:48 +01:00

12 lines
410 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', '{{ access_token }}', '{{ auth_provider.id }}')">
<h1>OIDC-test - FastAPI client</h1>
{% block content %}
{% endblock %}
</body>
</html>