0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-19 19:22:14 +02:00
postfixadmin/templates/password.tpl
Christian Boltz f8cd54a468 variables.inc.php:
- cleanup: move some vars to password.php and users/password.php
- drop $pPassword_admin_text - was always empty

password.php, users/password.php:
- init $pPassword_password_text and $pPassword_password_current_text
  (previously in variables.inc.php)

templates/password.tpl, templates/users_password.tpl:
- drop $pPassword_admin_text - was always empty

These changes should also fix some undefined variable warnings reported 
by makomi on IRC.


git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@1004 a1433add-5e2c-0410-b055-b7f2511e0802
2011-03-14 20:21:13 +00:00

36 lines
960 B
Smarty

<div id="edit_form">
<form name="mailbox" method="post" action="">
<table>
<tr>
<td colspan="3"><h3>{$PALANG.pPassword_welcome}</h3></td>
</tr>
<tr>
<td>{$PALANG.pPassword_admin}:</td>
<td>{$SESSID_USERNAME}</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>{$PALANG.pPassword_password_current}</td>
<td><input class="flat" type="password" name="fPassword_current" /></td>
<td>{$pPassword_password_current_text}</td>
</tr>
<tr>
<td>{$PALANG.pPassword_password}:</td>
<td><input class="flat" type="password" name="fPassword" /></td>
<td>{$pPassword_password_text}</td>
</tr>
<tr>
<td>{$PALANG.pPassword_password2}:</td>
<td><input class="flat" type="password" name="fPassword2" /></td>
<td>&nbsp;</td>
</tr>
<tr>
<td colspan="3" class="hlp_center"><input class="button" type="submit" name="submit" value="{$PALANG.pPassword_button}" /></td>
</tr>
<tr>
<td colspan="3" class="standout">{$tMessage}</td>
</tr>
</table>
</form>
</div>