8000 [DX] Added a logout link in the security panel of the web debug toolbar by javiereguiluz · Pull Request #14378 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[DX] Added a logout link in the security panel of the web debug toolbar #14378

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 6 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Further style tweaks
  • Loading branch information
javiereguiluz committed Aug 1, 2015
commit 73201365d197ae5c319c63f3f3d85efd2fe27dfa
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
<span>{{ collector.tokenClass|abbr_class }}</span>
</div>
{% endif %}
{% if collector.providerKey != null %}
{% if collector.providerKey %}
<div class="sf-toolbar-info-piece">
<a title="Logout from the {{ collector.providerKey }} firewall" href="{{ logout_path(collector.providerKey) }}">Logout</a>
<a class="sf-btn" title="Logout from the {{ collector.providerKey }} firewall" href="{{ logout_path(collector.providerKey) }}"><span class="sf-icon sf-danger">&times;</span> Logout</a>
</div>
{% endif %}
{% elseif collector.enabled %}
Expand Down
0