{# # --------------------------------------------------------------------- # # GLPI - Gestionnaire Libre de Parc Informatique # # http://glpi-project.org # # @copyright 2015-2024 Teclib' and contributors. # @copyright 2003-2014 by the INDEPNET Development Team. # @licence https://www.gnu.org/licenses/gpl-3.0.html # # --------------------------------------------------------------------- # # LICENSE # # This file is part of GLPI. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # --------------------------------------------------------------------- #} {% extends 'pages/setup/general/base_form.html.twig' %} {% import 'components/form/fields_macros.html.twig' as fields %} {% block config_fields %} {{ fields.largeTitle(__('Registration')) }} {% if registration_key is empty %}
{{ __('A registration key is needed to use some advanced features (like the plugin marketplace) in GLPI') }}
{{ __('Register on %1$s!')|format(__('GLPI Network')) }}
{{ __("And retrieve your key to paste it below") }}
{% endif %} {% if not services_available %}
{{ __('%1$s services website seems to be unavailable from your network or offline!')|format(__('GLPI Network')) }}
{% if curl_error is not null %} {{ __('Error was: %s')|format(curl_error) }} {% endif %}
{% endif %} {{ fields.textareaField('glpinetwork_registration_key', registration_key, __('Registration key'), { full_width: true, label_class: 'col-xxl-2', input_class: 'col-xxl-10', rows: 10 }) }} {% if registration_key is not empty %} {% if informations['validation_message'] is not empty %} {% set subscription_ok = informations['is_valid'] and informations['subscription']['is_running'] %} {% set validation_message %} {{ informations['validation_message'] }} {% endset %} {{ fields.htmlField('', validation_message, null, { full_width: true, label_class: 'col-xxl-2', input_class: 'col-xxl-10', }) }} {% endif %} {% if informations['is_valid'] %} {{ fields.htmlField('', informations['subscription']['title']|e, __('Subscription'), { full_width: true, label_class: 'col-xxl-2', input_class: 'col-xxl-10', }) }} {{ fields.htmlField('', __('From %1$s to %2$s')|format(informations['subscription']['begin_date']|formatted_date, informations['subscription']['end_date']|formatted_date)|e, __('Period'), { full_width: true, label_class: 'col-xxl-2', input_class: 'col-xxl-10', }) }} {{ fields.htmlField('', informations['owner']['name']|e, __('Registered by'), { full_width: true, label_class: 'col-xxl-2', input_class: 'col-xxl-10', }) }} {% endif %} {% endif %} {% endblock %}