{% extends 'base.html.twig' %} {% block title %} OceanExpert | Profile {% endblock %} {% block stylesheets %} {% endblock %} {% block body %} {% include "navbarlogin.html.twig" %}

{% if app.user.id is defined %} Edit {% else %} Complete {% endif %} Your Profile

{% if mode is defined and mode == 'newExpert' %} {% endif %} {# define what email we want to use #} {% if app.user.id is defined and expert.0.email1 is defined %} {% set userEmail = expert.0.email1 %} {% else %} {% set userEmail = app.user.email %} {% endif %}
{% include "Profile/editProfilePersonal.html.twig" %}
{% include "Profile/editProfileAffiliation.html.twig" %}
{% include "Profile/editProfileProfessional.html.twig" %}
{% include "Profile/editProfileFinalise.html.twig" %}
{% include "footer.html.twig" %} {% endblock %}