kers/users/templates/profile.html
2020-07-22 04:28:06 +02:00

16 lines
267 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Profile</title>
</head>
<body>
{% if user.is_authenticated %}
<p>{{ username }}</p>
{% else %}
<p>Not logged in</p>
<a href="/login/zeus/register">Login</a>
{% endif %}
</body>
</html>