mirror of
https://github.com/simple-login/app.git
synced 2024-11-16 08:58:30 +01:00
59 lines
1.9 KiB
HTML
59 lines
1.9 KiB
HTML
{% extends "base.html" %}
|
||
|
||
{% block greeting %}
|
||
<h1 style="margin-top: 0; color: #333333; font-size: 22px; font-weight: bold; text-align: left;" align="left">
|
||
{% if name %}
|
||
Welcome, {{ name }}!
|
||
{% else %}
|
||
Welcome!
|
||
{% endif %}
|
||
</h1>
|
||
{% endblock %}
|
||
|
||
{% block content %}
|
||
{% 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 %}
|
||
|
||
{% endif %}
|
||
|
||
{% 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 %}
|
||
|
||
{% call text() %}
|
||
Thanks, <br/>
|
||
SimpleLogin Team.
|
||
{% endcall %}
|
||
|
||
|
||
|
||
{% endblock %}
|
||
|