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
Tweaked again the button to logout from the application
  • Loading branch information
javiereguiluz committed Aug 1, 2015
commit aef50966553aab4ef28d1c07f8f8e09cf8af9f65
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
{% endif %}
{% if collector.providerKey %}
<div class="sf-toolbar-info-piece">
<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>
<b>Actions</b>
<a class="sf-btn" title="Logout from the {{ collector.providerKey }} firewall" href="{{ logout_path(collector.providerKey) }}">Logout</a>
</div>
{% endif %}
{% elseif collector.enabled %}
Expand Down
0