{% extends "base.html" %} {% block title %}Authorize {{ client.app_name }} - {{ site_name }}{% endblock %} {% block content %}

Authorize Application

{{ client.app_name }} is requesting access to your data.

Permissions Requested:
    {% for scope in scopes %}
  • {{ scope }}

    {% if scope == "openid" %} Access your identity information. {% elif scope == "profile" %} Access your user profile information. {% elif scope == "launch" %} Launch the application with context. {% elif scope == "launch/patient" %} Launch the application with patient context. {% elif scope == "patient/*.read" %} Read all patient data. {% else %} Custom scope permission. {% endif %}

  • {% endfor %}
{% endblock %}