opensmtpdadmin/templates/users_vacation.tpl

30 lines
836 B
Smarty
Raw Normal View History

2022-08-18 14:01:52 +02:00
<div id="edit_form">
<form name="vacation" method="post">
<table>
<tr>
2022-09-04 11:38:47 +02:00
<td colspan="3"><h3><?php echo $LANG['UsersVacation_welcome']; ?></h3></td>
2022-08-18 14:01:52 +02:00
</tr>
<tr>
2022-09-04 11:38:47 +02:00
<td><?php echo $LANG['UsersVacation_subject'] . ":"; ?></td>
<td><input type="text" name="fSubject" value="<?php echo $LANG['UsersVacation_subject_text']; ?>" /></td>
2022-08-18 14:01:52 +02:00
<td>&nbsp;</td>
</tr>
<tr>
2022-09-04 11:38:47 +02:00
<td><?php echo $LANG['UsersVacation_body'] . ":"; ?></td>
2022-08-18 14:01:52 +02:00
<td>
<textarea rows="10" cols="80" name="fBody">
2022-09-04 11:38:47 +02:00
<?php echo $LANG['UsersVacation_body_text']; ?>
2022-08-18 14:01:52 +02:00
</textarea>
</td>
<td>&nbsp;</td>
</tr>
<tr>
2022-09-04 11:38:47 +02:00
<td colspan="3" class="hlp_center"><input class="button" type="submit" name="fAway" value="<?php echo $LANG['UsersVacation_button_away']; ?>" /></td>
2022-08-18 14:01:52 +02:00
</tr>
<tr>
2022-09-04 11:38:47 +02:00
<td colspan="3" class="standout"><?php echo $tMessage; ?></td>
2022-08-18 14:01:52 +02:00
</tr>
</table>
</form>
</div>