13 lines
619 B
HTML
13 lines
619 B
HTML
|
|
{% extends "accounts/base.html" %}
|
||
|
|
{% block title %}Anmeldung bestätigen{% endblock %}
|
||
|
|
{% block content %}
|
||
|
|
<h1 class="text-xl font-semibold mb-2">Anmelden bei {{ company_name }}</h1>
|
||
|
|
<p class="mb-6">Sie fahren mit <strong>{{ identity_label }}</strong> fort.</p>
|
||
|
|
<form method="post" action="{% url 'accounts:oidc_confirm' %}">
|
||
|
|
{% csrf_token %}<button type="submit" class="btn-primary w-full">Mit diesem Konto fortfahren</button>
|
||
|
|
</form>
|
||
|
|
<form method="post" action="{% url 'accounts:oidc_start' %}" class="mt-4">
|
||
|
|
{% csrf_token %}<button type="submit">Mit einem anderen Konto anmelden</button>
|
||
|
|
</form>
|
||
|
|
{% endblock %}
|