mirror of
https://github.com/simple-login/app.git
synced 2024-11-16 00:48:32 +01:00
cb7868bdca
* Add DJlint configuration * Initial reformat for djlint * Add template linting to CI * Add explanation for HTML template checks in CONTRIBUTING.md
25 lines
795 B
HTML
25 lines
795 B
HTML
{% extends "default.html" %}
|
|
|
|
{% set active_page = "setting" %}
|
|
{% block title %}SUDO MODE{% endblock %}
|
|
{% block default_content %}
|
|
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<h1 class="h2">Entering Sudo Mode</h1>
|
|
<p>
|
|
The next page contains security related setting.
|
|
</p>
|
|
<p>
|
|
Please enter your account password so that we can ensure it's you.
|
|
</p>
|
|
<form method="post">
|
|
{{ password_check_form.csrf_token }}
|
|
<div class="font-weight-bold mt-5">Password</div>
|
|
{{ password_check_form.password(class="form-control", autofocus="true") }}
|
|
{{ render_field_errors(password_check_form.password) }}
|
|
<button class="btn btn-lg btn-danger mt-2">Submit</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|