{% extends 'base.html' %} {% block container %}

Welcome to the Authentication Demo

{% if current_user.is_authenticated %}

Hey {{ current_user.username }}!!

Click here to logout {% else %} Click here to login or register {% endif %} {% endblock %}