<!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>
|