dashboard.html

 avatar
mirhasan
html
a month ago
230 B
2
Indexable
<!DOCTYPE html>
<html>
<head>
    <title>Dashboard</title>
</head>
<body>
    <h1>Welcome, {{ user.username }}</h1>
    <p>Your role: {{ user.role }}</p>
    <a href="{{ url_for('logout') }}">Logout</a>
</body>
</html>
Leave a Comment