12 lines
225 B
HTML
12 lines
225 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Dashboard</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h2>Welcome, {{ name }}!</h2>
|
||
|
<p>This is the dashboard. More features will be added soon!</p>
|
||
|
<a href="/logout">Logout</a>
|
||
|
</body>
|
||
|
</html>
|