Skip to content

Commit 04b1c92

Browse files
authored
Fix unclosed div on login form skeleton
1 parent f6a4edb commit 04b1c92

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)