Files
2024-10-16 17:52:50 +02:00

34 lines
726 B
HTML

<html>
<head>
<title>{{name}}'s profile</title>
<link rel="stylesheet" media="screen" href="/static/global.css" />
</head>
<body hx-boost="true">
<main>
<nav>
<table>
<tr>
<td><a href="/posts">Posts</a></td>
<td><a href="/users">Users</a></td>
</tr>
</table>
<table>
<tr>
{% if login %}
<td><a href="/users/{{login_username}}">{{login_username}}</a></td>
<td><a href="/action/logout">logout</a></td>
{% else %}
<td><a href="/login">login</a></td>
<td><a href="/signup">signup</a></td>
{% end %}
</tr>
</table>
</nav>
<article>
<h1>{{name}}'s proile</h1>
<p>{{bio}}</p>
</article>
</main>
</body>
</html>