Files
wireguard_webadmin/containers/auth-gateway/auth_gateway/templates/login_totp.html

19 lines
860 B
HTML
Raw Normal View History

{% extends "base.html" %}
2026-03-24 16:14:00 -03:00
{% block title %}Verification required — Gatekeeper{% endblock %}
{% block content %}
2026-03-24 16:14:00 -03:00
<h1 class="card-title">Verification required</h1>
<p class="card-subtitle">Enter your security code to access <strong>{{ application_name }}</strong></p>
{% if error %}
<div class="alert alert-error">{{ error }}</div>
{% endif %}
<form method="post" action="{{ external_path }}/login/totp" class="stack">
<input type="hidden" name="csrf_token" value="{{ csrf_token }}">
<input type="hidden" name="next" value="{{ next }}">
<label class="field">
2026-03-24 16:14:00 -03:00
<span>Security code</span>
<input type="text" name="token" inputmode="text" autocomplete="off" autofocus required>
</label>
<button class="btn btn-primary" type="submit">Verify</button>
</form>
{% endblock %}