2019-11-20 22:12:26 +01:00
|
|
|
{% extends "base.html" %}
|
2019-11-16 14:05:15 +01:00
|
|
|
|
2020-02-12 06:18:57 +01:00
|
|
|
{% block greeting %}
|
|
|
|
<h1 style="margin-top: 0; color: #333333; font-size: 22px; font-weight: bold; text-align: left;" align="left">
|
2021-01-11 10:22:39 +01:00
|
|
|
Welcome!
|
2020-02-12 06:18:57 +01:00
|
|
|
</h1>
|
|
|
|
{% endblock %}
|
2020-01-11 22:21:58 +01:00
|
|
|
|
2020-02-12 06:18:57 +01:00
|
|
|
{% block content %}
|
2020-09-12 14:34:32 +02:00
|
|
|
{% if alias %}
|
|
|
|
{% call text() %}
|
2020-09-12 14:57:25 +02:00
|
|
|
This is the first email you receive via your <b>first alias</b> <em>{{ alias }}</em>.
|
2020-09-12 14:34:32 +02:00
|
|
|
{% endcall %}
|
2020-09-12 12:13:35 +02:00
|
|
|
|
2020-09-12 14:34:32 +02:00
|
|
|
{% call text() %}
|
2021-02-12 13:03:26 +01:00
|
|
|
This alias is automatically created for receiving SimpleLogin news and tips. <br>
|
|
|
|
In the next coming days, we'll send you 3 emails to help you get the best out of SimpleLogin. <br>
|
|
|
|
Please <a href="{{ URL + '/dashboard/setting#notification' }}">disable</a> it if you don't need this.
|
2020-09-12 14:34:32 +02:00
|
|
|
{% endcall %}
|
|
|
|
{% endif %}
|
2020-09-12 12:13:35 +02:00
|
|
|
|
2020-10-22 11:46:15 +02:00
|
|
|
{% call text() %}
|
|
|
|
If you are using Firefox or a Chromium-browser like Chrome, Edge, Brave, you can
|
|
|
|
install our <a href="https://addons.mozilla.org/firefox/addon/simplelogin/">Firefox add-on</a>
|
|
|
|
or <a href="https://chrome.google.com/webstore/detail/dphilobhebphkdjbpfohgikllaljmgbn">Chrome extension</a>
|
2021-02-12 13:03:26 +01:00
|
|
|
to create aliases in one click (like in the below gif 👇).
|
2020-10-22 11:46:15 +02:00
|
|
|
{% endcall %}
|
|
|
|
|
|
|
|
{% call text() %}
|
2021-11-04 10:27:44 +01:00
|
|
|
<img src="https://simplelogin.io/images/one-click-alias.gif"
|
|
|
|
style="max-width: 80%; margin: auto; border: 1px solid">
|
2020-10-22 11:46:15 +02:00
|
|
|
{% endcall %}
|
|
|
|
|
|
|
|
{% call text() %}
|
|
|
|
SimpleLogin is also available on
|
|
|
|
<a href="https://play.google.com/store/apps/details?id=io.simplelogin.android">Android</a> and
|
|
|
|
<a href="https://apps.apple.com/app/id1494359858">iOS</a>
|
2021-03-23 18:47:16 +01:00
|
|
|
so you can manage your aliases on the go.
|
2020-09-12 12:13:35 +02:00
|
|
|
{% endcall %}
|
|
|
|
|
|
|
|
{% if user.in_trial() and user.trial_end %}
|
|
|
|
{% call text() %}
|
2021-11-04 10:27:44 +01:00
|
|
|
When you signed up, you can use all premium features like
|
|
|
|
<em>custom domain</em>, <em>alias directory</em>,
|
2020-09-12 14:34:32 +02:00
|
|
|
<em>mailbox</em>,
|
2021-11-04 10:27:44 +01:00
|
|
|
<em>PGP</em> without any limit during 7 days (the "trial period").
|
|
|
|
Everything you create during this period will
|
|
|
|
continue to work normally even if you don't upgrade.
|
|
|
|
<br>
|
|
|
|
{% endcall %}
|
|
|
|
|
|
|
|
{% call text() %}
|
|
|
|
Please note that you can't create more than 15 aliases during the trial period. <br>
|
2020-09-12 12:13:35 +02:00
|
|
|
{% endcall %}
|
|
|
|
{% endif %}
|
2020-01-11 22:21:58 +01:00
|
|
|
|
2020-09-12 12:13:35 +02:00
|
|
|
{% call text() %}
|
2021-11-04 10:27:44 +01:00
|
|
|
For any question, feedback or feature request, please join our
|
|
|
|
<a href="https://github.com/simple-login/app/discussions">GitHub forum</a>.
|
|
|
|
You can also join our <a href="https://www.reddit.com/r/Simplelogin/">Reddit</a> or follow our
|
|
|
|
<a href="https://twitter.com/simple_login">Twitter</a>.
|
2020-09-12 12:13:35 +02:00
|
|
|
{% endcall %}
|
2020-01-30 07:54:33 +01:00
|
|
|
|
2019-11-20 22:12:26 +01:00
|
|
|
{% endblock %}
|
2019-11-16 14:05:15 +01:00
|
|
|
|