mirror of
https://github.com/eduardogsilva/wireguard_webadmin.git
synced 2026-03-17 14:26:18 +00:00
18 lines
861 B
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 & 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 %}
|