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

18 lines
861 B
HTML

{% extends "base.html" %}
{% block title %}Sign in — Gatekeeper{% endblock %}
{% block content %}
<h1 class="card-title">Sign in</h1>
<p class="card-subtitle">Accessing <strong>{{ application_name }}</strong></p>
<div class="stack">
{% if "password" in methods %}
<a class="btn btn-primary" href="{{ external_path }}/login/password?next={{ next | urlencode }}">Continue with username &amp; password</a>
{% endif %}
{% if "oidc" in methods %}
<a class="btn btn-secondary" href="{{ external_path }}/login/oidc/start?next={{ next | urlencode }}">Continue with OIDC</a>
{% endif %}
{% if "totp" in methods %}
<a class="btn btn-secondary" href="{{ external_path }}/login/totp?next={{ next | urlencode }}">Continue with authenticator code</a>
{% endif %}
</div>
{% endblock %}