mirror of https://github.com/Aidaho12/haproxy-wi
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.
23 lines
708 B
23 lines
708 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 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;">Passwords are mismatched</p>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div> |