oh-oh/idp/templates/users.html
2025-07-12 21:46:13 +02:00

18 lines
426 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Users - IDP</title>
<link rel="stylesheet" href="/style.css" />
</head>
<body>
<h1>Your favorite identity provider</h1>
<a href="/">home</a>
<ul>
{% for user in users %}
<li>{{user}}</li>
{% endfor %}
</ul>
</body>
</html>