moved generate password button to password column
This commit is contained in:
parent
3ee6d00a8a
commit
7863c0cd79
1 changed files with 5 additions and 4 deletions
|
@ -193,6 +193,11 @@
|
|||
<td>
|
||||
<input name="password" class="textinput" type="password" placeholder="New password"/></br>
|
||||
<input name="password_rep" class="textinput" type="password" placeholder="New password (repeat)"/>
|
||||
|
||||
<p>
|
||||
<input type="button" class="button button-small" name="Text 1" value="Generate password"
|
||||
onclick="pass=generatePassword();this.form.password.value=pass;this.form.password_rep.value=pass;this.form.password.type='text';this.form.password_rep.type='text'">
|
||||
</p>
|
||||
</td>
|
||||
|
||||
<?php if(defined('DBC_USERS_MAILBOXLIMIT')){ ?>
|
||||
|
@ -207,10 +212,6 @@
|
|||
<input name="savemode" type="hidden" value="<?php if(isset($mode)){echo $mode;} ?>"/>
|
||||
<input name="id" class="sendbutton" type="hidden" value="<?php if(isset($id)){echo $id;} ?>"/>
|
||||
|
||||
<p>
|
||||
<input type="button" class="button button-small" name="Text 1" value="Generate password"
|
||||
onclick="pass=generatePassword();this.form.password.value=pass;this.form.password_rep.value=pass;this.form.password.type='text';this.form.password_rep.type='text'">
|
||||
</p>
|
||||
<p>
|
||||
<input type="submit" class="button button-small" value="Save settings">
|
||||
</p>
|
||||
|
|
Loading…
Add table
Reference in a new issue