{% extends "sign_in_with_sl_base.html" %} {% block title %}Authorize {{ client.name }} - Sign in with SimpleLogin{% endblock %} {% block head %} {% endblock %} {% block single_content %}
{% if not client.approved %}
{{ client.name }} is in Dev Mode and isn't approved (yet) by SimpleLogin. Please make sure you trust {{ client.name }} before proceeding.
{% endif %}
{% if client_user %}
You have already authorized {{ client.name }}.

{{ client.name }} has access to the following info:
{% for scope in client.get_scopes() %}
{% if scope == Scope.AVATAR_URL and user_info[scope.value] %} avatar: {% elif scope == Scope.EMAIL %} {{ scope.value }}: {{ user_info[scope.value] }} {% elif scope == Scope.NAME %} {{ scope.value }}: {{ user_info[scope.value] }} {% endif %}
{% endfor %}
{% else %} {% if client.icon_id %}
{% endif %}
{{ client.name }} will receive the following info

{% if current_user.can_create_new_alias() %}
OR
{% endif %}
OR
{% if current_user.profile_picture_id %}
OR
{% endif %} {% endif %} {% if client_user %} {% else %} {% endif %}
{% endblock %}