mirror of https://github.com/Aidaho12/haproxy-wi
23 lines
714 B
HTML
23 lines
714 B
HTML
{% 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> |