opensmtpdadmin/templates/users_menu.tpl

18 lines
493 B
Smarty
Raw Normal View History

2022-08-18 14:01:52 +02:00
<div id="menu">
<ul>
2022-09-05 08:20:02 +02:00
<li><a target="_top" href="password.php"><?php echo $LANG['UsersMenu_password']; ?></a></li>
2022-09-04 22:32:35 +02:00
<?php if (VACATION == "YES") { ?>
2022-09-04 11:38:47 +02:00
<li><a target="_top" href="vacation.php"><?php echo $LANG['UsersMenu_vacation']; ?></a></li>
2022-08-18 14:01:52 +02:00
<?php } ?>
2022-09-04 11:38:47 +02:00
<li><a target="_top" href="logout.php"><?php echo $LANG['Menu_logout']; ?></a></li>
2022-08-18 14:01:52 +02:00
</ul>
</div>
<?php
if (file_exists(realpath("../motd-users.txt"))) {
2022-09-04 11:38:47 +02:00
echo "<div id=\"motd\">\n";
2022-08-18 14:01:52 +02:00
include("../motd-users.txt");
2022-09-04 11:38:47 +02:00
echo "</div>";
2022-08-18 14:01:52 +02:00
}
?>