{# -*- coding: utf-8 -*- This file is part of Invenio. Copyright (C) 2015-2020 CERN. Invenio is free software; you can redistribute it and/or modify it under the terms of the MIT License; see LICENSE file for more details. #} {%- extends "invenio_oauth2server/settings/index.html" %} {%- import "invenio_oauth2server/settings/helpers.html" as helpers with context %} {%- from "invenio_oauth2server/settings/_macros.html" import render_field, render_scopes_field with context %} {% block settings_content %} {{ helpers.panel_start( _('Personal access token / %(name)s', name=token.client.name), with_body=False, ) }} {% if show_token %}

{{ _('Access token') }}

{{ token.access_token }}

{{ _("Please copy the personal access token now. You won't see it again!") }}

{{ _('Do not share this personal access token. It gives full access to your account.') }}

{%- block token_footer_text %}{%- endblock %}
{% endif %}
{% if not show_token %}

{{ _("If you've lost or forgotten this token please create a new one. Be aware that any scripts or applications using this token will need to be updated.") }}

{% endif %}
{{ render_field(form.name, autofocus=True) }} {{ render_scopes_field(form.scopes) }} {{ form.csrf_token }}
{{helpers.panel_end(with_body=False)}} {% endblock %}