If you want to customize the User Login box so that everything is displayed on one line like this, then add the following code to the page.tpl.php file of your theme.
<?php global $user; ?>
<?php if ($user->uid) : ?>
<?php print(t('Logged in as:'))?> <?php print l($user->name,'user/'.$user->uid); ?> |
<?php print l((t('log out')),"logout"); ?>
<?php else : ?>
<?php endif; ?>
More information can be found on








