mirror of
https://github.com/simple-login/app.git
synced 2024-11-13 07:31:12 +01:00
36 lines
2.6 KiB
HTML
36 lines
2.6 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 %}
|
||
{{ render_text("My name is Son. I’m the founder of SimpleLogin and I wanted to be the first to welcome you on board.") }}
|
||
|
||
{{ render_text('To better secure your account, I recommend enabling Multi-Factor Authentication (MFA) on your <a href="https://app.simplelogin.io/dashboard/setting">Setting page</a>.') }}
|
||
|
||
{{ render_text('SimpleLogin browser extension could be handy to quickly manage aliases. Chrome (or other Chromium-based browsers like Brave or Vivaldi) extension can be installed on <a href="https://chrome.google.com/webstore/detail/simplelogin-your-anti-spa/dphilobhebphkdjbpfohgikllaljmgbn">Chrome Store</a>, Firefox on <a href="https://addons.mozilla.org/en-GB/firefox/addon/simplelogin/">Firefox Store</a> and Safari on <a href="https://apps.apple.com/us/app/simplelogin/id1494051017?mt=12&fbclid=IwAR0M0nnEKgoieMkmx91TSXrtcScj7GouqRxGgXeJz2un_5ydhIKlbAI79Io">AppStore</a>.') }}
|
||
|
||
{{ render_text('If you have a domain, for example for your business or your project, you can import your domain into SimpleLogin
|
||
and create your <b>business emails</b> using email alias. This is cheaper and more convenient than buying a dedicated solution like GSuite. By the way, all our business emails are actually aliases.') }}
|
||
|
||
{{ render_text('If you use <b>PGP</b> (Pretty Good Privacy), you can import your public key into SimpleLogin and all emails will be <b>encrypted</b> before being forwarded to your mailbox. You can add your PGP key on <a href="https://app.simplelogin.io/dashboard/mailbox">mailbox</a>.') }}
|
||
|
||
{% if user.in_trial() %}
|
||
{{ render_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() + ". All aliases you create during the trial will continue to work normally when the trial ends.") }}
|
||
{% endif %}
|
||
|
||
{{ render_text('In the next coming days, you are going to receive some onboarding emails to quickly present SimpleLogin features. If you don\'t want to receive these emails, you can disable them on <a href="https://app.simplelogin.io/dashboard/setting#notification">Settings</a>.') }}
|
||
|
||
{{ render_text('Thanks, <br />SimpleLogin Team.') }}
|
||
|
||
{{ render_text('<strong>P.S.</strong> Need immediate help getting started? Just reply to this email, the SimpleLogin support team is always ready to help!.') }}
|
||
|
||
{% endblock %}
|
||
|