{% extends 'base.html' %} {% load static %} {% block title %} Home {% endblock %} {% block content %}
Logo

Welcome to the Home Page {% if isAdmin %} , Admin {% endif %}

This is a simple home page for PKPL Week 06.

{% if isLoggedIn %} {% include 'components/button.html' with variant='btn-primary' text='Logout' %} {% else %} {% include 'components/button.html' with variant='btn-primary' text='Login' %} {% include 'components/button.html' with variant='btn-primary' text='Register' %} {% endif %}
{% endblock %}