oidc-fastapi-test/src/oidc_test/templates/base.html

13 lines
410 B
HTML
Raw Normal View History

2025-01-02 02:14:30 +01:00
<html>
<head>
<title>OIDC (FastAPI) test</title>
2025-01-19 01:48:00 +01:00
<link href="{{ url_for('static', path='/styles.css') }}" rel="stylesheet">
<script src="{{ url_for('static', path='/utils.js') }}"></script>
2025-01-02 02:14:30 +01:00
</head>
<body onload="checkPerms('links-to-check', '{{ access_token }}', '{{ auth_provider.id }}')">
<h1>OIDC-test - FastAPI client</h1>
2025-01-09 23:41:32 +01:00
{% block content %}
{% endblock %}
2025-01-02 02:14:30 +01:00
</body>
</html>