Skip to content

Commit

Permalink
Move current password input to the top, makes more sense
Browse files Browse the repository at this point in the history
  • Loading branch information
slawkens committed Nov 19, 2024
1 parent 38e699b commit 7963628
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions system/templates/account.change-password.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,26 @@ Please enter your current password and a new password. For your security, please
<table style="width:100%;">
<tr>
<td class="LabelV">
<span>New Password:</span>
<span>Current Password:</span>
</td>
<td style="width:90%;">
<input form="form" type="password" name="newpassword" size="30" maxlength="29">
<td>
<input form="form" type="password" name="oldpassword" size="30" maxlength="29">
</td>
</tr>
<tr>
<td class="LabelV">
<span>New Password Again:</span>
<span>New Password:</span>
</td>
<td>
<input form="form" type="password" name="newpassword_confirm" size="30" maxlength="29">
<td style="width:90%;">
<input form="form" type="password" name="newpassword" size="30" maxlength="29">
</td>
</tr>
<tr>
<td class="LabelV">
<span>Current Password:</span>
<span>New Password Again:</span>
</td>
<td>
<input form="form" type="password" name="oldpassword" size="30" maxlength="29">
<input form="form" type="password" name="newpassword_confirm" size="30" maxlength="29">
</td>
</tr>
</table>
Expand Down

0 comments on commit 7963628

Please sign in to comment.