{% extends 'oauth2/master.twig' %} {% set body_header_icon = 'login' %} {% set body_header_text = 'Not logged in' %} {% set body_title = 'Authorisation Request' %} {% block body_content %}
{% if app is defined and not app.isTrusted %}

A third-party application is requesting permission to access your account.

{% endif %}

You must be logged in to authorise applications. Log in or create an account and reload this page to try again.

{% if app is defined and app.isTrusted %}

You will be redirected to the following application after logging in.

{% endif %}
{% if app is defined %}
{{ app.name }}
{# TODO: author should be listed #}

{{ app.summary }}

This application will be able to:
Do anything because I have not made up scopes yet.
Eat soup.
These are placeholders.
This one is really long because I want to test wrapping and how the chevron icon thing will handle it so there will be a lot of text here, the app will not be gaining anything from it but yeah sometimes you just need to explode seventy times.
{% else %}

More details about the application will be displayed once you're logged in.

{% endif %} {% endblock %}