kers/users/templates/profile.html

16 lines
267 B
HTML
Raw Normal View History

2020-07-22 02:21:29 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Profile</title>
</head>
<body>
2020-07-22 02:28:01 +00:00
{% if user.is_authenticated %}
<p>{{ username }}</p>
{% else %}
<p>Not logged in</p>
<a href="/login/zeus/register">Login</a>
{% endif %}
2020-07-22 02:21:29 +00:00
</body>
</html>