{% extends 'base.html' %} {% block title %}Halaman Utama{% endblock %} {% block content %} {% include 'navbar.html' %}
{% if user.is_authenticated %}

Welcome, {{ user.username }}.

Take a deep breath. You're exactly where you need to be.

{% csrf_token %}

{% else %}

Welcome.

Take a deep breath. A new journey begins. Log in now

{% endif %}
{% endblock %}