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

Home

{% if user.is_authenticated %}

You are welcome on Home Page

Your name is - {{user.first_name}} {{user.last_name}}

Your email is - {{user.email}}


Edit Profile

Change Password

Logout {% else %} Login

Forgot Password

Sign Up {% endif %} {% endblock content %}