{% extends "base.html" %} {% comment %} Re2o est un logiciel d'administration développé initiallement au Rézo Metz. Il se veut agnostique au réseau considéré, de manière à être installable en quelques clics. Copyright © 2021 Yohann D'ANELLO 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 2 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, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. {% endcomment %} {% load i18n %} {% block content %}

{% blocktrans trimmed with asso_name=asso.name %}Welcome onto the captive portal of {{ asso_name }}!{% endblocktrans %}

{% if not user.is_authenticated %}

{% trans "Registration" %}

{% trans "If you don't have an account yet and you want to access the Internet and the organisation's services, create your own personal account." %}

{% trans "Sign up" %}

{% trans "Logging in" %}

{% trans "If you already have an account, log in. You can manage your subscriptions to the organisation." %}

{% trans "Log in" %}

{% else %}

{% trans "My subscriptions" %}

{% trans "To renew your Internet connection, you can extend your current connection." %}

{% trans "Buy a new subscription" %}

{% endif %}
{% trans "About Re2o..." %} {% endblock %}