{% extends 'authentication/layout.html' %} {% block title %}My Account{% endblock %} {% block style %} {% endblock %} {% block body %}
Your Profile

First Name
{{customer.first_name}}

Last Name
{{customer.last_name}}

Username
{{customer.username}}

Email
{{customer.email}}

{% if customer.birth_date %}
Date of Birth
{{customer.birth_date}}

{% endif %}
{% endblock %} {% block script %}{% endblock %}