{# Copyright (C) 2023 CERN. Invenio RDM Records is free software; you can redistribute it and/or modify it under the terms of the MIT License; see LICENSE file for more details. #} {% set user_access_request_url = "{api}/records/{pid_value}/access/request".format( api=config.SITE_API_URL, pid_value=record.id ) %} {% set guest_access_request_url = "{api}/records/{pid_value}/access/request/guest".format( api=config.SITE_API_URL, pid_value=record.id ) %} {% set endpoint = guest_access_request_url if current_user.is_anonymous else user_access_request_url %}
We have sent you an email to verify your address. Please check the email and follow the instructions to complete the access request.