app-MAIL-temp/templates/emails/new-app.html

11 lines
672 B
HTML
Raw Normal View History

2019-11-20 22:02:24 +01:00
{% extends "base.html" %}
2019-11-16 15:13:21 +01:00
2019-11-20 22:02:24 +01:00
{% block content %}
{{ render_text("Hi " + name + ",") }}
{{ render_text("This is Son, SimpleLogin Founder 😊.") }}
{{ render_text("Even though I lead the company, Im the *product person* and the user experience you get from our product means a lot to me.") }}
{{ render_text('Our users and developers love SimpleLogin and its simplicity (hence the "simple" in the name 😉), but if there\'s anything that\'s bugging you, even the smallest of issues that could be done better, I want to hear about it - so hit the reply button.') }}
{{ render_button("SimpleLogin documentation", "https://docs.simplelogin.io") }}
{% endblock %}
2019-11-16 15:13:21 +01:00