oidc stuff

This commit is contained in:
nora 2025-07-13 15:37:29 +02:00
parent 4d7a2be572
commit 30c49c3795
12 changed files with 538 additions and 6 deletions

View file

@ -9,9 +9,17 @@
<body>
<h1>Your favorite identity provider</h1>
<a href="/">home</a>
<p>OAuth Config</p>
<div>
<a href="/oauth-clients">List all OAuth clients</a>
</div>
<div>
<a href="/add-oauth-client">Register a new OAuth client</a>
</div>
{% if let Some(username) = username %}
<p>Hello, {{username}}!</p>
{% endif %}
<p>Login</p>
<div>
<a href="/signup">Create an account</a>
</div>
@ -22,6 +30,7 @@
<a href="/users">List all users</a>
</div>
{% if let Some(username) = username %}
<p>Account</p>
<div>
<a href="/sessions">List all active sessions your account</a>
</div>