forked from Github-Mirrors/canaille
64 lines
2.6 KiB
HTML
64 lines
2.6 KiB
HTML
{# Consent request template.
|
|
|
|
This templates is displayed to users accessing a new application that requests to access to personal information.
|
|
It lists the personal information requested by the application, and offers the user to accept or decline.
|
|
|
|
:param user: The user whose consent is asked.
|
|
:type user: :class:`~canaille.core.models.User`
|
|
:param grant: The OIDC grant.
|
|
:type grant: An Authlib ``Grant``
|
|
#}
|
|
{% extends theme('base.html') %}
|
|
{% import 'macro/form.html' as fui %}
|
|
|
|
{% block content %}
|
|
<div class="ui segment" hx-boost="false">
|
|
{% if client.logo_uri %}
|
|
<img class="ui centered tiny image" src="{{ client.logo_uri }}" alt="{{ client.client_name }}">
|
|
{% endif %}
|
|
|
|
<h2 class="ui header">
|
|
{% trans name=client.client_name %}The application {{ name }} is requesting access to:{% endtrans %}
|
|
</h2>
|
|
|
|
<div class="ui divided items">
|
|
{% for scope in grant.request.scope.split(" ") %}
|
|
{% if scope not in ignored_scopes %}
|
|
<div class="item">
|
|
{% if scope in scope_details %}
|
|
<div>
|
|
<i class="{{ scope_details[scope][0] }} large icon"></i>
|
|
{{ scope_details[scope][1] }}
|
|
</div>
|
|
{% else %}
|
|
<div class="ui tiny image">
|
|
<i class="huge user icon"></i>
|
|
{{ scope }}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
|
|
<div class="ui center aligned container">
|
|
{{ gettext('You are logged in as %(name)s', name=user.formatted_name) }}
|
|
</div>
|
|
|
|
<div class="ui center aligned container">
|
|
{% call fui.render_form(form) %}
|
|
<div class="ui stackable buttons">
|
|
<button name="answer" type="submit" class="ui negative button" value="deny" id="deny">
|
|
{% trans %}Deny{% endtrans %}
|
|
</button>
|
|
<button name="answer" type="submit" class="ui button" value="logout" id="logout">
|
|
{% trans %}Switch user{% endtrans %}
|
|
</button>
|
|
<button name="answer" type="submit" class="ui primary button" value="accept" id="accept">
|
|
{% trans %}Accept{% endtrans %}
|
|
</button>
|
|
</div>
|
|
{% endcall %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|