{% extends "WebBundle::layout.html.twig" %} {% set subtitle = "My Profile" %} {% set og_description = "My Profile" %} {% set og_type = "null" %} {% set og_image = "null" %} {% set keywords = "null" %} {% block title %}My Profile{% endblock %} {% block body %}
{{app.user.name}}
My Profile Edit Profile My Subscription {% if app.user.type == "email" %} Change password {% endif %} Logout

My Profile

Full Name {{app.user.name}}
Email {{app.user.email}}
Subscription {% if app.user.subscribed == false %} You are not subscribed subscribe now {% else %} You are premium now {% endif %}
Last Login {{app.user.lastlogin|date("d/m/Y - H:i")}}
{% endblock %}