diff options
Diffstat (limited to 'admin/template/goto')
-rw-r--r-- | admin/template/goto/user_list.tpl | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/admin/template/goto/user_list.tpl b/admin/template/goto/user_list.tpl index aa4e369dc..76bbdbf3c 100644 --- a/admin/template/goto/user_list.tpl +++ b/admin/template/goto/user_list.tpl @@ -6,8 +6,13 @@ <form class="filter" method="post" name="add_user" action="{$F_ADD_ACTION}"> <fieldset> <legend>{'Add a user'|@translate}</legend> - <label>{'Username'|@translate} <input type="text" name="login" maxlength="50" size="20" /></label> - <label>{'Password'|@translate} <input type="text" name="password" /></label> + <label>{'Username'|@translate} <input type="text" name="login" maxlength="50" size="20"></label> + {if $Double_Password} + <label>{'Password'|@translate} <input type="password" name="password"></label> + <label>{'Confirm Password'|@translate} <input type="password" name="password_conf" id="password_conf"></label> + {else} + <label>{'Password'|@translate} <input type="text" name="password"></label> + {/if} <label>{'Email address'|@translate} <input type="text" name="email" /></label> <label> <input class="submit" type="submit" name="submit_add" value="{'Submit'|@translate}" {$TAG_INPUT_ENABLED} /></label> </fieldset> |