mirror of
https://github.com/simple-login/app.git
synced 2024-11-16 08:58:30 +01:00
f722cae8d6
* Add multiple registration warning message * Add alert --------- Co-authored-by: Adrià Casajús <adria.casajus@proton.ch>
17 lines
425 B
HTML
17 lines
425 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
{% call text() %}
|
|
Hello,
|
|
{% endcall %}
|
|
|
|
{% call text() %}
|
|
Your have tried to register multiple times to {{ service }}, and this is against the terms of service of SimpleLogin. Please don't do that anymore.
|
|
{% endcall %}
|
|
|
|
{% call text() %}
|
|
If you continue registering multiple accounts to a single service we will have to disable your account.
|
|
{% endcall %}
|
|
|
|
{% endblock %}
|