app-MAIL-temp/templates/dashboard/enter_sudo.html

42 lines
1.6 KiB
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>
{% if connect_with_proton %}
<div class="my-3">
<p>Alternatively you can use your Proton credentials to ensure it's you.</p>
</div>
<a class="btn btn-primary btn-block mt-2 proton-button w-25"
href="{{ url_for('auth.proton_login', next=next) }}">
<img class="mr-2" src="/static/images/proton.svg" />
Authenticate with Proton
</a>
{% endif %}
{% if connect_with_oidc %}
<div class="my-3">
<p>Alternatively you can use your SSO credentials to ensure it's you.</p>
<a class="btn btn-primary btn-block mt-2 btn-social w-25"
href="{{ url_for('auth.oidc_login', next=next) }}">
<i class="fa {{ connect_with_oidc_icon }}"></i> Authenticate with SSO
</a>
{% endif %}
</div>
</div>
{% endblock %}