You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

15 lines
320 B

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Profile</title>
</head>
<body>
<h1>Profile</h1>
<p>Email: {{ email }}</p>
{% if photo_url %}
<img src="{{ photo_url }}" alt="Profile Photo">
{% endif %}
<a href="{{ url_for('logout') }}">Logout</a>
</body>
</html>