Move current password input to the top, makes more sense

This commit is contained in:
slawkens 2024-11-19 20:55:53 +01:00
parent 38e699ba4b
commit 79636280a7

View File

@ -4,6 +4,14 @@ Please enter your current password and a new password. For your security, please
{% set background = config('darkborder') %}
{% set content %}
<table style="width:100%;">
<tr>
<td class="LabelV">
<span>Current Password:</span>
</td>
<td>
<input form="form" type="password" name="oldpassword" size="30" maxlength="29">
</td>
</tr>
<tr>
<td class="LabelV">
<span>New Password:</span>
@ -20,14 +28,6 @@ Please enter your current password and a new password. For your security, please
<input form="form" type="password" name="newpassword_confirm" size="30" maxlength="29">
</td>
</tr>
<tr>
<td class="LabelV">
<span>Current Password:</span>
</td>
<td>
<input form="form" type="password" name="oldpassword" size="30" maxlength="29">
</td>
</tr>
</table>
{% endset %}
{% include 'tables.headline.html.twig' %}