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">
|
|
|
|
|
{% if name %}
|
2020-09-12 12:13:35 +02:00
|
|
|
|
Welcome, {{ name }}!
|
2020-02-12 06:18:57 +01:00
|
|
|
|
{% else %}
|
2020-09-12 12:13:35 +02:00
|
|
|
|
Welcome!
|
2020-02-12 06:18:57 +01:00
|
|
|
|
{% endif %}
|
|
|
|
|
</h1>
|
|
|
|
|
{% endblock %}
|
2020-01-11 22:21:58 +01:00
|
|
|
|
|
2020-02-12 06:18:57 +01:00
|
|
|
|
{% block content %}
|
2020-09-12 12:13:35 +02:00
|
|
|
|
{% call text() %}
|
|
|
|
|
My name is Son. I’m the founder of SimpleLogin and I wanted to be the first to welcome you on board.
|
|
|
|
|
{% endcall %}
|
|
|
|
|
|
|
|
|
|
{% call text() %}
|
|
|
|
|
To better secure your account, I recommend enabling Multi-Factor Authentication (MFA) on your
|
|
|
|
|
<a href="{{ URL + '/dashboard/setting/#totp' }}">Setting page</a>.
|
|
|
|
|
{% endcall %}
|
|
|
|
|
|
|
|
|
|
{% call text() %}
|
|
|
|
|
If you have any feedback or improvement ideas please let me know by simply replying to this email. Yes, this email
|
|
|
|
|
is not sent from a no-reply address.
|
|
|
|
|
{% endcall %}
|
|
|
|
|
|
|
|
|
|
{% call text() %}
|
|
|
|
|
To be informed of SimpleLogin latest features, you can follow our
|
|
|
|
|
<a href="https://twitter.com/simple_login">Twitter</a> or join our
|
|
|
|
|
<a href="https://www.reddit.com/r/Simplelogin/">Reddit sub</a>.
|
|
|
|
|
{% endcall %}
|
|
|
|
|
|
|
|
|
|
{% if user.in_trial() and user.trial_end %}
|
|
|
|
|
{% call text() %}
|
|
|
|
|
You can use all premium features like <em>custom domain</em> or <em>alias directory</em> during the
|
|
|
|
|
<b>trial period</b>. Your trial will end {{user.trial_end.humanize() }}. <br>
|
|
|
|
|
All aliases you create during the trial
|
|
|
|
|
will continue to work normally when the trial ends.
|
|
|
|
|
{% endcall %}
|
2020-01-11 22:21:58 +01:00
|
|
|
|
|
2020-09-12 12:13:35 +02:00
|
|
|
|
{% endif %}
|
2020-01-11 22:21:58 +01:00
|
|
|
|
|
2020-09-12 12:13:35 +02:00
|
|
|
|
{% call text() %}
|
|
|
|
|
In the next coming days, you are going to receive some onboarding emails to quickly present some SimpleLogin
|
|
|
|
|
features.
|
|
|
|
|
If you don't want to receive these emails, you can disable them in your
|
|
|
|
|
<a href="{{ URL + '/dashboard/setting#notification' }}">notification settings</a>.
|
|
|
|
|
{% endcall %}
|
2020-01-11 22:21:58 +01:00
|
|
|
|
|
2020-09-12 12:13:35 +02:00
|
|
|
|
{% call text() %}
|
|
|
|
|
Thanks, <br/>
|
|
|
|
|
SimpleLogin Team.
|
|
|
|
|
{% endcall %}
|
2020-01-30 07:54:33 +01:00
|
|
|
|
|
2020-02-08 16:44:00 +01:00
|
|
|
|
|
2020-02-12 06:18:57 +01:00
|
|
|
|
|
2019-11-20 22:12:26 +01:00
|
|
|
|
{% endblock %}
|
2019-11-16 14:05:15 +01:00
|
|
|
|
|