{% extends 'blog/base.html' %} {% load crispy_forms_filters %} {% block title %} Profile Page {% endblock %} {% block body %}
{% if user.is_authenticated %}

{{ user.username }}

{{ user.email }}

{% csrf_token %}
Profile Info {{ user_form|crispy }} {{ profile_form|crispy }} {#
#} {#
#} {# {{ form.username|as_crispy_field }}#} {#
#} {#
#} {#
#} {#
#} {# {{ form.email|as_crispy_field }}#} {#
#} {#
#}
{% else %}

If you want to see the Profile information then you have to be login

{% endif %}
{% endblock %}