This commit is contained in:
2024-02-15 09:50:58 +01:00
commit 0a56008ec3
4 changed files with 92 additions and 0 deletions

16
templates/home.html Normal file
View File

@ -0,0 +1,16 @@
<html>
<head>
<meta charset="utf-8" />
<title>Auth0 Example</title>
</head>
<body>
{% if session %}
<h1>Welcome {{session.userinfo.name}}!</h1>
<p><a href="/logout">Logout</a></p>
<div><pre>{{pretty}}</pre></div>
{% else %}
<h1>Welcome Guest</h1>
<p><a href="/login">Login</a></p>
{% endif %}
</body>
</html>