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 4c912f1da8 list-virtual.php:
- hand over $search to smarty templates

templates/list-virtual_alias.tpl, templates/list-virtual_alias_domain.tpl:
- add search result highlighting

templates/list-virtual_mailbox.tpl:
- add search result highlighting
- move output of "Mailbox" / "Forward only" outside the foreach loop
  (was displayed once per mailbox alias target)

css/default.css:
- add style for ".searchresult"



git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@868 a1433add-5e2c-0410-b055-b7f2511e0802
2010-09-26 23:14:42 +00:00

52 lines
1.5 KiB
Smarty

{* {$pEdit_mailbox_username_text} nicht gesetzt *}
<div id="edit_form">
<form name="mailbox" method="post" action="">
<table>
<tr>
<td colspan="3"><h3>{$PALANG.pEdit_mailbox_welcome}</h3></td>
</tr>
<tr>
<td>{$PALANG.pEdit_mailbox_username}</td>
<td>{$fUsername}</td>
<td>{$pEdit_mailbox_username_text}</td>
</tr>
<tr>
<td>{$PALANG.pEdit_mailbox_password}:</td>
<td><input class="flat" type="password" name="fPassword" /></td>
<td>{$pEdit_mailbox_password_text}</td>
</tr>
<tr>
<td>{$PALANG.pEdit_mailbox_password2}:</td>
<td><input class="flat" type="password" name="fPassword2" /></td>
<td>&nbsp;</td>
</tr>
<tr>
<td>{$PALANG.pEdit_mailbox_name}:</td>
<td><input class="flat" type="text" name="fName" value="{$tName}" /></td>
<td>{$pEdit_mailbox_name_text}</td>
</tr>
{if $CONF.quota===YES}
<tr>
<td>{$PALANG.pEdit_mailbox_quota} (max: {$tMaxquota}):</td>
<td><input class="flat" type="text" name="fQuota" value="{$tQuota}" /></td>
<td>{$pEdit_mailbox_quota_text}</td>
</tr>
{/if}
<tr>
<td>{$PALANG.pCreate_mailbox_active}:</td>
<td><input class="flat" type="checkbox" name="fActive"{$tActive}/></td>
<td>&nbsp;</td>
</tr>
<tr>
<td colspan="3" class="hlp_center">
<input class="button" type="submit" name="submit" value="{$PALANG.pEdit_mailbox_button}" />
<input class="button" type="submit" name="cancel" value="{$PALANG.exit}"/>
</td>
</tr>
<tr>
<td colspan="3" class="standout">{$tMessage}</td>
</tr>
</table>
</form>
</div>