You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
postfixadmin/templates/edit-alias.tpl

50 lines
1.0 KiB
Smarty

<center>
<?php print $tMessage; ?>
<table class="form">
<tr>
<td align="center" colspan="3">
<?php print $PALANG['pEdit_alias_welcome'] . "\n"; ?>
<br />
<br />
</td>
</tr>
<tr>
<td>
<form name="mailbox" method="post">
<?php print $PALANG['pEdit_alias_address'] . ":\n"; ?>
</td>
<td>
<?php print $fAddress; ?>
</td>
<td>
&nbsp;
</td>
</tr>
<tr>
<td>
<?php print $PALANG['pEdit_alias_goto'] . ":\n"; ?>
</td>
<td>
<textarea rows="24" cols="80" name="fGoto">
<?php
$array = preg_split ('/,/', $tGoto);
for ($i = 0 ; $i < sizeof ($array) ; $i++)
{
if (empty ($array[$i])) continue;
print "$array[$i]\n";
}
?>
</textarea>
</td>
<td>
&nbsp;
</td>
</tr>
<tr>
<td align="center" colspan="3">
<input type="submit" name="submit" value="<?php print $PALANG['pEdit_alias_button']; ?>" />
</form>
</td>
</tr>
</table>