|
@@ -1,31 +1,14 @@
|
|
|
{% extends 'PackagistWebBundle::layout.html.twig' %}
|
|
|
|
|
|
{% block content %}
|
|
|
- <div style="margin-bottom: 10px;">
|
|
|
- {% if is_granted("IS_AUTHENTICATED_REMEMBERED") %}
|
|
|
- {{ 'layout.logged_in_as'|trans({'%username%': app.user.username}, 'FOSUserBundle') }} |
|
|
|
- <a href="{{ path('fos_user_security_logout') }}">
|
|
|
- {{ 'layout.logout'|trans({}, 'FOSUserBundle') }}
|
|
|
- </a>
|
|
|
- {% else %}
|
|
|
- <a href="{{ path('fos_user_security_login') }}">{{ 'layout.login'|trans({},
|
|
|
-'FOSUserBundle') }}</a>
|
|
|
- {% endif %}
|
|
|
- </div>
|
|
|
|
|
|
{% for key, flash in app.session.getFlashes() %}
|
|
|
- <div class="{{ flash }}" style="margin-bottom: 5px;">
|
|
|
- {{ key|trans({}, 'FOSUserBundle') }}
|
|
|
- </div>
|
|
|
+ <div class="{{ flash }}" style="margin-bottom: 5px;">
|
|
|
+ {{ key|trans({}, 'FOSUserBundle') }}
|
|
|
+ </div>
|
|
|
{% endfor %}
|
|
|
|
|
|
<div>
|
|
|
{% block fos_user_content %}{% endblock %}
|
|
|
- </div>
|
|
|
-
|
|
|
- <ul>
|
|
|
- <li><a href="{{ path('fos_user_registration_register') }}">Create a new account</a></li>
|
|
|
- <li><a href="{{ path('fos_user_profile_show') }}">See your profile</a></li>
|
|
|
- <li><a href="{{ path('fos_user_security_logout') }}">Log out</a></li>
|
|
|
- </ul>
|
|
|
+ </div>
|
|
|
{% endblock %}
|