Skip to content

Commit 4b68910

Browse files
committed
bug #443 Fix unclosed div on login form skeleton (matthieumota)
This PR was merged into the 1.0-dev branch. Discussion ---------- Fix unclosed div on login form skeleton A little fix when generate guard auth in login form skeleton. "checkbox" class is also useless. Commits ------- 04b1c92 Fix unclosed div on login form skeleton
2 parents f6a4edb + 04b1c92 commit 4b68910

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/Resources/skeleton/authenticator/login_form.tpl.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010

1111
<?php if ($logout_setup): ?>
1212
{% if app.user %}
13-
<div class="checkbox mb-3">You are logged in as {{ app.user.username }}, <a href="{{ path('app_logout') }}">Logout</a>
13+
<div class="mb-3">
14+
You are logged in as {{ app.user.username }}, <a href="{{ path('app_logout') }}">Logout</a>
15+
</div>
1416
{% endif %}
1517
<?php endif; ?>
1618

0 commit comments

Comments
 (0)