speakmore-2.0/templates/sidebar.html

16 lines
336 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Sidebar</title>
</head>
<body>
<div class="sidebar">
<h3>Welcome, {{ username }}</h3>
<ul>
<li><a href="/dashboard">Dashboard</a></li>
<li><a href="/logout">Logout</a></li>
</ul>
</div>
</body>
</html>