Files
Cloud-CMS/views/applications-authorize-page.twig
Matt Batchelder 05ce0da296 Initial Upload
2025-12-02 10:32:59 -05:00

62 lines
3.5 KiB
Twig

{#
/**
* Copyright (C) 2022 Xibo Signage Ltd
*
* Xibo - Digital Signage - http://www.xibo.org.uk
*
* This file is part of Xibo.
*
* Xibo is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* Xibo is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Xibo. If not, see <http://www.gnu.org/licenses/>.
*/
#}
{% extends "authed.twig" %}
{% import "inline.twig" as inline %}
{% block pageContent %}
<div class="widget w-50 mx-auto">
<div class="widget-title">{% trans "Authorize Request" %}</div>
<div class="widget-body">
<div class="card mx-auto my-auto">
{% if application.coverImage %}<img class="card-img" style="opacity: 0.4; object-fit: cover" src="{{ application.coverImage }}" alt="Card image">
<div class="card-img-overlay" style="opacity: unset">
{% endif %}
<div class="card-body">
{% if application.logo %}<div class="logo" style="margin-bottom: 30px"><img src="{{ application.logo }}" class="card-img-top" alt="{{ application.getName() }}" style="width: 150px;"></div>{% endif %}
<h3 class="card-title">{% if application.companyName %} {{ application.companyName }} - {% endif %} {{ authParams.client.getName() }}</h3>
<h5 class="card-text">{{ "would like access to the following scopes"|trans }}:</h5>
<ul class="card-text" style="margin-bottom: 50px">
{% for scope in scopes %}
<li>
{{ scope.description|trans|raw }}
</li>
{% endfor %}
</ul>
{% if application.description %}<h5 class="card-text" style="margin-bottom: 30px">{{ application.description }}</h5>{% endif %}
{% if application.termsUrl %}<h5 class="card-text"><a href="{{ application.termsUrl }}">{% trans "Terms" %}</a></h5>{% endif %}
{% if application.privacyUrl %}<h5 class="card-text"><a href="{{ application.privacyUrl }}">{% trans "Privacy Policy" %}</a></h5>{% endif %}
</div>
{% if application.coverImage %}<img class="card-img" style="opacity: 0.4; object-fit: cover" src="{{ application.coverImage }}" alt="Card image">
</div>
{% endif %}
</div>
<form method="post" action="{{ url_for("application.authorize") }}" {% if approved %}style="display: none"{% endif %}>
<div class="text-right">
<input type="hidden" name="{{ csrfKey }}" value="{{ csrfToken }}" />
<input type="submit" id="deny" class="btn btn-danger" value="Deny" name="authorization">
<input type="submit" id="approve" class="btn btn-success" value="Approve" name="authorization">
</div>
</form>
</div>
</div>
{% endblock %}