1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-10 08:34:20 +02:00

Wrap username in <span>

Username enclosed in tags for better use of custom themes (eg. vertical padding).
This commit is contained in:
Dragsio
2025-03-09 16:03:40 +01:00
committed by Jakub Vrana
parent 4991817b0d
commit 7512bc2d51

View File

@@ -192,7 +192,7 @@ function page_footer($missing = "") {
<?php if ($missing != "auth") { ?>
<form action="" method="post">
<p class="logout">
<?php echo h($_GET["username"]) . "\n"; ?>
<span><?php echo h($_GET["username"]) . "\n"; ?></span>
<input type="submit" name="logout" value="<?php echo lang('Logout'); ?>" id="logout">
<input type="hidden" name="token" value="<?php echo $token; ?>">
</p>