dashboard.html
<!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
<!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>