peach-workspace/peach-web/templates/settings/admin/reset_password.html.tera

24 lines
1.5 KiB
Plaintext

{%- extends "nav" -%}
{%- block card %}
<!-- RESET PASSWORD PAGE -->
<div class="card center">
<form id="changePassword" class="center" action="/settings/admin/reset_password" method="post">
<div style="display: flex; flex-direction: column; margin-bottom: 1rem;">
<!-- input for temporary password -->
<label class="center label-small font-gray" style="width: 80%;" for="temporary_password">TEMPORARY PASSWORD</label>
<input id="temporary_password" class="center input" name="temporary_password" type="password" title="temporary password" value="">
<!-- input for new password1 -->
<label class="center label-small font-gray" style="width: 80%;" for="new_password1">NEW PASSWORD</label>
<input id="new_password1" class="center input" name="new_password1" title="new_password1" type="password" value="">
<!-- input for new password2 -->
<label class="center label-small font-gray" style="width: 80%;" for="new_password2">RE-ENTER NEW PASSWORD</label>
<input id="new_password2" class="center input" name="new_password2" title="new_password2" type="password" value="">
<!-- save (form submission) button -->
<input id="changePasswordButton" class="button button-primary center" title="Add" type="submit" value="Save">
</div>
</form>
<!-- FLASH MESSAGE -->
{% include "snippets/flash_message" %}
</div>
{%- endblock card -%}