2019-10-25 07:18:57 +00:00
|
|
|
{% from 'include/input_macros.html' import input %}
|
|
|
|
<div id="user-change-password-table" style="display: none;">
|
|
|
|
<table class="overview">
|
|
|
|
<tr>
|
|
|
|
<td colspan="2">
|
2021-11-26 09:11:07 +00:00
|
|
|
<p class="validateTips alert alert-success">Enter a password and confirm</p>
|
2019-10-25 07:18:57 +00:00
|
|
|
</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">
|
2021-11-26 09:11:07 +00:00
|
|
|
<p class="validateTips alert alert-danger" style="margin-top: 10px;">The passwords are mismatched</p>
|
2019-10-25 07:18:57 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</div>
|