{% extends "base.html" %} {% block content %}
{% if not user.username %}

Hello there!

{% else %}

Welcome,{{user.username}}

{% endif %}
{% csrf_token %}

{{message}}



{% endblock %}