{% extends "base.html" %} {% block title %}Index Page{% endblock %} {% block content %}

Index Page

{% if current_user.is_authenticated %}

Hello {{ current_user.username }}

{% else %}

No user is authencitaced!

{% endif %} Login
Signup
Logout
Secret
{% endblock %}