12 lines
410 B
HTML
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>
|