This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/passbook/saml_idp/templates/saml/idp/login.html

35 lines
1.1 KiB
HTML
Raw Normal View History

{% extends "login/base.html" %}
2018-11-16 08:10:35 +00:00
2018-11-16 09:08:15 +00:00
{% load utils %}
2018-11-16 08:10:35 +00:00
{% load i18n %}
{% block title %}
{% title 'Authorize Application' %}
2018-11-16 08:10:35 +00:00
{% endblock %}
{% block card %}
<header class="login-pf-header">
<h1>{% trans 'Authorize Application' %}</h1>
</header>
<form method="POST" action="{{ acs_url }}">
{% csrf_token %}
<input type="hidden" name="ACSUrl" value="{{ acs_url }}">
<input type="hidden" name="RelayState" value="{{ relay_state }}" />
<input type="hidden" name="SAMLResponse" value="{{ saml_response }}" />
<div class="login-group">
<h3>
2019-03-08 20:30:16 +00:00
{% blocktrans with remote=remote.application.name %}
You're about to sign into {{ remote }}
{% endblocktrans %}
</h3>
<p>
{% blocktrans with user=user %}
You are logged in as {{ user }}.
{% endblocktrans %}
<a href="{% url 'passbook_core:auth-logout' %}">{% trans 'Not you?' %}</a>
</p>
<input class="btn btn-primary btn-block btn-lg" type="submit" value="{% trans 'Continue' %}" />
2018-11-16 08:10:35 +00:00
</div>
</form>
2018-11-16 08:10:35 +00:00
{% endblock %}