{% extends "base.html" %} {% block greeting %}

{% if name %} Welcome, {{ name }}! {% else %} Welcome! {% endif %}

{% 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 Setting page.') }} {{ 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 Chrome Store, Firefox on Firefox Store and Safari on AppStore.') }} {{ 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 business emails 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.') }} {% if user.in_trial() %} {{ render_text('You can use all premium features like custom domain or alias directory during the trial period. Your trial will end ' + user.trial_end.humanize() + ".") }} {% 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 Settings.') }} {{ render_text('Thanks,
SimpleLogin Team.') }} {{ render_text('P.S. Need immediate help getting started? Just reply to this email, the SimpleLogin support team is always ready to help!.') }} {% endblock %}