Assistant: codex Assistant-Model: gpt-6-astra Assistant-Session: 01a092fe-13b1-7f12-ac74-7d258af4d79c
12 lines
619 B
HTML
12 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 %}
|