Skip to content
Snippets Groups Projects
Commit 6b3c02c6 authored by kaiyou's avatar kaiyou
Browse files

Remove dynamic help messages

parent ce4ce607
No related branches found
No related tags found
1 merge request!20Add 'remember me' button
...@@ -4,12 +4,6 @@ ...@@ -4,12 +4,6 @@
{% block content %} {% block content %}
{% call macros.help(_("Contact information"), auto=utils.display_help("main")) %}
<p>{% trans %}There is no requirement for you to provide us with your contact information. Those can be useful though.{% endtrans %}</p>
<p>{% trans %}If you lose access to your account, we might use this information to check that your are indeed who you pretend to be.{% endtrans %}</p>
<p>{% trans %}Also, if we notice unusual behavior on your account, we may use this information to contact you instead of immediately blocking your account.{% endtrans %}</p>
{% endcall %}
{{ macros.form(form) }} {{ macros.form(form) }}
{% endblock %} {% endblock %}
\ No newline at end of file
...@@ -30,11 +30,4 @@ ...@@ -30,11 +30,4 @@
</div> </div>
</div> </div>
{% call macros.help(_("Authentication manager"), auto=False) %}
<p>{% trans %}This is Hiboo, our account and authentication manager.{% endtrans %}</p>
<p>{% trans %}Hiboo is designed so you only have to remember one password and can use your many accounts on every application associated with it.{% endtrans %}</p>
<p>{% trans %}If you wish to sign into one of the applications, simply open your browser and go to the application: you will automatically be redirected back to Hiboo and will be able to pick the profile you desire.{% endtrans %}</p>
<p>{% trans %}<strong>If you are having trouble</strong>, please refer to the documentation, then contact the administrator of this service directly, using the contact button in the left panel.{% endtrans %}</p>
{% endcall %}
{% endblock %} {% endblock %}
...@@ -5,12 +5,6 @@ ...@@ -5,12 +5,6 @@
{% block content %} {% block content %}
{% call macros.help(_("Authentication manager"), auto=utils.display_help("main")) %}
<p>{% trans %}<strong>You were directed here for authentication</strong>. This is our account manager, designed so you only have to remember one password for all our applications.{% endtrans %}</p>
<p>{% trans %}<strong>If you are seing this page for the first time</strong>, then you must first create your account and password: please click the "Sign up" button for this.{% endtrans %}</p>
<p>{% trans %}<strong>If you are having trouble</strong>, please refer to the documentation, then contact the administrator of this service directly, using the contact button in the left panel.{% endtrans %}</p>
{% endcall %}
{{ macros.form(form) }} {{ macros.form(form) }}
{% endblock %} {% endblock %}
......
...@@ -5,12 +5,6 @@ ...@@ -5,12 +5,6 @@
{% block content %} {% block content %}
{% call macros.help(_("I want a new account!"), auto=utils.display_help("main")) %}
<p>{% trans %}You are about to sign up for a new account.{% endtrans %}</p>
<p>{% trans %}Please note that you only need a single account. If you own one already, please sign in. If you need a different username, you can simply create custom profiles! Please contact us if you are having trouble.{% endtrans %}</p>
<p>{% trans %}Please (please!) use a decent password and memorize it. We do not wish to collect data on who you are. That also means it is dificult for us to verify who you are and reset your password in case you forget it.{% endtrans %}</p>
{% endcall %}
{{ macros.form(form) }} {{ macros.form(form) }}
{% endblock %} {% endblock %}
...@@ -6,12 +6,6 @@ ...@@ -6,12 +6,6 @@
{% block content %} {% block content %}
{% call macros.help(_("Claim an existing profile"), auto=utils.display_help("main")) %}
<p>{% trans %}You are about to claim an existing profile on the service.{% endtrans %}</p>
<p>{% trans %}Please specify the username and password of your original account on the service.{% endtrans %}</p>
<p>{% trans %}If you are used to sign into that service using an email address, please specify your username or nickname instead.{% endtrans %}</p>
{% endcall %}
{{ macros.form(form) }} {{ macros.form(form) }}
{% endblock %} {% endblock %}
...@@ -9,12 +9,6 @@ ...@@ -9,12 +9,6 @@
{% block content %} {% block content %}
{% call macros.help(_("Create a new profile"), auto=utils.display_help("main")) %}
<p>{% trans %}You are about to create an application profile.{% endtrans %}</p>
<p>{% trans %}Please choose a username wisely, you will not be able to change it later. You may pick anything that is valid for the service, as long as it is available.{% endtrans %}</p>
<p>{% trans %}If your profile request is submitted for validation, please add a useful comment that will help us validate (describe shortly what your profile is for or why you need one).{% endtrans %}</p>
{% endcall %}
{{ macros.form(form) }} {{ macros.form(form) }}
{% endblock %} {% endblock %}
...@@ -36,26 +36,6 @@ ...@@ -36,26 +36,6 @@
{% endfor %} {% endfor %}
</div> </div>
{% call macros.help(_("Pick your profile"), auto=utils.display_help("main")) %}
{% set max_profiles = service.max_profiles %}
<p>{% trans %}Every service is associated with profiles, which are just as many identities that you can associate to your master account.{% endtrans %}</p>
<p>{% trans %}You may think of profiles as a way to switch between a personal and a business account, or to use the service under different identities for diffrent activities.{% endtrans %}</p>
<p>{% trans %}Profiles were introduced in order to offer flexibility and security against stalkers and other sorts of online violence.{% endtrans %}</p>
<div class="text-bold">
{% if service.policy == "locked" %}
<p>{% trans %}However, profile creation on this services is currently locked down. You may only use existing profiles if you have any.{% endtrans %}</p>
{% elif service.policy == "reserved" %}
<p>{% trans %}This service is not currently open for profile registration. In order to get new profiles, you must ask a service administrator.{% endtrans %}</p>
{% elif service.policy == "managed" %}
<p>{% trans %}You may request new profiles. Your requests will be submitted to validation.{% endtrans %}</p>
{% elif service.policy == "burst" %}
<p>{% trans %}You may create up to {{ max_profiles }} profiles. Further profile requests will be submitted to validation.{% endtrans %}</p>
{% elif service.policy == "open" %}
<p>{% trans %}You may create up to {{ max_profiles }} profiles. Please contact the service administrator if you have any specific needs.{% endtrans %}</p>
{% endif %}
</div>
{% endcall %}
{% endblock %} {% endblock %}
{% block actions %} {% block actions %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment