poc-mvc-ocr/app/templates/dashboard.html
2025-04-14 21:13:40 -03:00

14 lines
341 B
HTML

<!DOCTYPE html>
<html lang="pt">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dashboard</title>
</head>
<body>
<h1>Bem-vindo ao Dashboard!</h1>
<p>Usuário logado: {{ user_email }}</p>
<a href="{{ url_for('login_form.login') }}">Sair</a>
</body>
</html>