22 lines
464 B
Plaintext
22 lines
464 B
Plaintext
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Dashboard</title>
|
|
<link rel="stylesheet" type="text/css" href="/themes.css">
|
|
<link rel="stylesheet" type="text/css" href="/typography.css">
|
|
</head>
|
|
<body>
|
|
<h1>Dashboard</h1>
|
|
|
|
{{# user }}
|
|
<p>Logged in as {{ user.name }} ({{ user.username }})</p>
|
|
<form action="/logout" method="POST">
|
|
<button type="submit">Logout</button>
|
|
</form>
|
|
{{/ user }}
|
|
|
|
{{^ user }}
|
|
<a href="/login">Login Page</a>
|
|
{{/ user }}
|
|
</body>
|
|
</html> |