{% extends "layout.html" %} {% block title %} Authorize account access - {{cfg("sr.ht", "site-name")}} meta {% endblock %} {% block content %}

Authorize account access

{{csrf_token()}}

{{client.name}} {{icon('external-link-alt')}} would like to access to your {{cfg("sr.ht", "site-name")}} account. {{client.name}} is a third-party application operated by {{client.owner.canonicalName}}. You may revoke this access at any time on the OAuth tab of your meta.sr.ht profile.

Review access request

{{client.name}} is requesting the following permissions:

{% macro render_access(grant) %} {% if grant[2] == 'RO' %} {% elif grant[2] == 'RW' %} and {% endif %} {% endmacro %}
    {% for grant in grants %}
  • {{render_access(grant)}} access to your {{grant[0]}} {{grant[1]}} {{valid.summary(grant[0] + "/" + grant[1] + ":RO")}}
  • {% endfor %}
You may uncheck any permission to deny access, but doing so may prevent this third-party application from working correctly.
{% if state %} {% endif %} {{valid.summary()}}
{% endblock %}