You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
haproxy-wi/app/templates/include/change_pass_form.html

23 lines
714 B

{% from 'include/input_macros.html' import input %}
<div id="user-change-password-table" style="display: none;">
<table class="overview">
<tr>
<td colspan="2">
<p class="validateTips alert alert-success">Enter a password and confirm</p>
</td>
</tr>
<tr>
<td class="padding20">Password</td>
<td>{{ input('change-password', type='password') }}</td>
</tr>
<tr>
<td class="padding20">Confirm password</td>
<td>{{ input('change2-password', type='password') }}</td>
</tr>
<tr id="missmatchpass" style="display: none;">
<td colspan="2">
<p class="validateTips alert alert-danger" style="margin-top: 10px;">The passwords are mismatched</p>
</td>
</tr>
</table>
</div>