mirror of
https://github.com/Balshgit/different
synced 2025-09-11 02:50:41 +03:00
18 lines
440 B
HTML
18 lines
440 B
HTML
{% extends "users/base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
Hello {{ user.username|default:'guest' }}!
|
|
|
|
<div>
|
|
{% if user.is_authenticated %}
|
|
<a href="{% url 'accounts:logout' %}">Logout</a>
|
|
<a href="{% url 'accounts:password_change' %}">Change Password</a>
|
|
<a href="{% url 'accounts:portfolio' %}">Go to Profile page</a>
|
|
{% else %}
|
|
<a href="{% url 'accounts:login' %}">Login</a>
|
|
{% endif %}
|
|
</div>
|
|
|
|
{% endblock %}
|