mirror of
https://github.com/rjNemo/auth
synced 2026-06-06 08:26:39 +00:00
23 lines
729 B
HTML
23 lines
729 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Dashboard</title>
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css"
|
|
/>
|
|
</head>
|
|
<body>
|
|
<main class="container">
|
|
<h1>Welcome</h1>
|
|
<p>You are signed in as <strong>{{.Email}}</strong>.</p>
|
|
<p>This placeholder dashboard will evolve as we flesh out the auth flow.</p>
|
|
<form method="post" action="/logout">
|
|
<input type="hidden" name="_csrf" value="{{.CSRFToken}}" />
|
|
<button type="submit" class="secondary">Sign out</button>
|
|
</form>
|
|
</main>
|
|
</body>
|
|
</html>
|