Skip to content

Commit

Permalink
fix: Use the correct color scheme after login or logout
Browse files Browse the repository at this point in the history
  • Loading branch information
marien-probesys committed May 10, 2023
1 parent 326fe08 commit 9b95c80
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion templates/base.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@

<div class="popup__separator"></div>

<form action="{{ path('logout') }}" method="post">
<form action="{{ path('logout') }}" method="post" data-turbo="false">
<input type="hidden" name="_csrf_token" value="{{ csrf_token('logout') }}">
<button class="popup__item" id="form-logout-submit" type="submit">
{{ icon('logout') }}
Expand Down
2 changes: 1 addition & 1 deletion templates/login/new.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<h1>{{ 'login.title' | trans }}</h1>

<form action="{{ path('login') }}" method="post" class="flow">
<form action="{{ path('login') }}" method="post" class="flow" data-turbo="false">
<input type="hidden" name="_csrf_token" value="{{ csrf_token('authenticate') }}">

{% if error %}
Expand Down

0 comments on commit 9b95c80

Please sign in to comment.