{% extends 'auth_app\base.html' %} {% block title %}Home{% endblock %} {% block content %}

Welcome to Auth App

{% if user.is_authenticated %}

You are logged in as {{ user.email }}

Change Password {% else %}

You are not logged in

Login {% endif %} {% endblock %}