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

13 lines
345 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>
2025-01-03 13:36:22 +01:00
<body onload="checkPerms('links-to-check')">
2025-01-11 03:54:53 +01:00
<h1>OIDC-test</h1>
2025-01-09 23:41:32 +01:00
{% block content %}
{% endblock %}
2025-01-02 02:14:30 +01:00
</body>
</html>