mirror of
https://github.com/Noratrieb/oh-oh.git
synced 2026-01-14 17:15:02 +01:00
25 lines
601 B
HTML
25 lines
601 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>IDP</title>
|
|
<link rel="stylesheet" href="/style.css" />
|
|
</head>
|
|
<body>
|
|
<h1>Your favorite identity provider</h1>
|
|
<a href="/">home</a>
|
|
{% if let Some(username) = username %}
|
|
<p>Hello, {{username}}!</p>
|
|
{% endif %}
|
|
<div>
|
|
<a href="/signup">Create an account</a>
|
|
</div>
|
|
<div>
|
|
<a href="/login">Login</a>
|
|
</div>
|
|
<div>
|
|
<a href="/users">List all users</a>
|
|
</div>
|
|
</body>
|
|
</html>
|