mirror of
https://github.com/simple-login/app.git
synced 2024-11-16 17:08:30 +01:00
57 lines
1.8 KiB
HTML
57 lines
1.8 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 %}
|
|
{% if alias %}
|
|
{% call text() %}
|
|
This is the first email you receive via your <b>first alias</b> <em>{{ alias }}</em>.
|
|
It is automatically created when you signed up on SimpleLogin.
|
|
{% endcall %}
|
|
|
|
{% call text() %}
|
|
This alias is for receiving our news, feature announcements or tips -
|
|
feel free to <a href="{{ URL + '/dashboard/setting#notification' }}">disable</a> it if you don't need any of
|
|
these.
|
|
{% endcall %}
|
|
{% endif %}
|
|
|
|
{% call text() %}
|
|
You can reach out to us by: <br>
|
|
<ul>
|
|
<li>Simply replying to this email </li>
|
|
<li>On <a href="https://twitter.com/simple_login">Twitter</a> </li>
|
|
<li>On <a href="https://www.reddit.com/r/Simplelogin/">Reddit</a></li>
|
|
</ul>
|
|
{% endcall %}
|
|
|
|
{% if user.in_trial() and user.trial_end %}
|
|
{% call text() %}
|
|
When you signed up, you can use all premium features like <em>custom domain</em>, <em>alias directory</em>,
|
|
<em>mailbox</em>,
|
|
<em>PGP</em> without any limit during 7 days (the "trial period"). <br>
|
|
No worries: all aliases you create during this period
|
|
will continue to work normally even if you don't upgrade.
|
|
{% endcall %}
|
|
{% endif %}
|
|
|
|
{% call text() %}
|
|
Please don't hesitate to talk around you about the benefits of using <b>email alias</b>
|
|
to protect your personal email address and your privacy. <br>
|
|
{% endcall %}
|
|
|
|
{% call text() %}
|
|
Let's make spammers and Big Tech's life harder.<br/>
|
|
SimpleLogin Team.
|
|
{% endcall %}
|
|
|
|
{% endblock %}
|
|
|