0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-20 03:36:20 +02:00
postfixadmin/templates/edit-mailbox.tpl
Christian Boltz a81f3d6506 edit-mailbox.php, edit-mailbox.tpl:
- fixed undefined variables


git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@1147 a1433add-5e2c-0410-b055-b7f2511e0802
2011-07-29 23:37:56 +00:00

53 lines
1.7 KiB
Smarty

<div id="edit_form">
<form name="mailbox" method="post" action="">
<table>
<tr>
<th colspan="4">{$PALANG.pEdit_mailbox_welcome}</th>
</tr>
<tr>
<td class="label"><label>{$PALANG.pEdit_mailbox_username}:</label></td>
<td><em>{$fUsername}</em></td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td class="label"><label>{$PALANG.pEdit_mailbox_password}:</label></td>
<td><input class="flat" type="password" name="fPassword" /></td>
<td>{$PALANG.pCreate_mailbox_password_text}</td>
<td class="error_msg">{$mailbox_password_text_error}</td>
</tr>
<tr>
<td class="label"><label>{$PALANG.pEdit_mailbox_password2}:</label></td>
<td><input class="flat" type="password" name="fPassword2" /></td>
<td colspan="2">&nbsp;</td>
</tr>
<tr>
<td class="label"><label>{$PALANG.pEdit_mailbox_name}:</label></td>
<td><input class="flat" type="text" name="fName" value="{$tName}" /></td>
<td>{$PALANG.pCreate_mailbox_name_text}</td>
<td>&nbsp;</td>
</tr>
{if $CONF.quota===YES}
<tr>
<td class="label"><label>{$PALANG.pEdit_mailbox_quota} (max: {$tMaxquota}):</label></td>
<td><input class="flat" type="text" name="fQuota" value="{$tQuota}" /></td>
<td>{$PALANG.pEdit_mailbox_quota_text}</td>
<td class="error_msg">{$mailbox_quota_text_error}</td>
</tr>
{/if}
<tr>
<td class="label"><label>{$PALANG.pCreate_mailbox_active}:</label></td>
<td><input class="flat" type="checkbox" name="fActive"{$tActive}/></td>
<td colspan="2">&nbsp;</td>
</tr>
<tr>
<td>&nbsp;</td>
<td colspan="3">
<input class="button" type="submit" name="submit" value="{$PALANG.save}" />
<input class="button" type="submit" name="cancel" value="{$PALANG.exit}"/>
</td>
</tr>
</table>
</form>
</div>