opensmtpdadmin/templates/users_main.tpl

23 lines
672 B
Smarty
Raw Normal View History

2022-08-18 14:01:52 +02:00
<div id="main_menu">
<table>
<tr>
<td>&nbsp;</td>
2022-09-04 11:38:47 +02:00
<td><?php echo $_SESSION['userid']['username']; ?></td>
2022-08-18 14:01:52 +02:00
</tr>
2022-09-04 22:32:35 +02:00
<?php if (VACATION == 'YES') { ?>
2022-08-18 14:01:52 +02:00
<tr>
2022-09-04 11:38:47 +02:00
<td nowrap><a target="_top" href="vacation.php"><?php echo $LANG['UsersMenu_vacation']; ?></a></td>
<td><?php echo $LANG['UsersMain_vacation']; ?></td>
2022-08-18 14:01:52 +02:00
</tr>
<?php } ?>
<tr>
2022-09-04 11:38:47 +02:00
<td nowrap><a target="_top" href="password.php"><?php echo $LANG['UsersMenu_password']; ?></a></td>
<td><?php echo $LANG['UsersMain_password']; ?></td>
2022-08-18 14:01:52 +02:00
</tr>
<tr>
2022-09-04 11:38:47 +02:00
<td nowrap><a target="_top" href="logout.php"><?php echo $LANG['Menu_logout']; ?></a></td>
<td><?php echo $LANG['Main_logout']; ?></td>
2022-08-18 14:01:52 +02:00
</tr>
</table>
</div>