You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
891 B

  1. {% extends "emails/base.html" %}
  2. {% load hc_extras %}
  3. {% block content %}
  4. Hello,
  5. <br />
  6. {% if inviting_profile %}
  7. <strong>{{ inviting_profile.user.email }}</strong> invites you to their
  8. <a href="{% site_root %}">{% site_name %}</a> account.
  9. <br /><br />
  10. You will be able to manage their
  11. existing monitoring checks and set up new ones. If you already have your
  12. own account on {% site_name %}, you will be able to switch
  13. between the two accounts.
  14. <br /><br />
  15. {% endif %}
  16. To log into <a href="{% site_root %}">{% site_name %}</a>,
  17. please press the button below:
  18. {% endblock %}
  19. {% block content_more %}
  20. Thanks,<br>
  21. The {% site_name %} Team
  22. <br /><br />
  23. <strong>P.S.</strong> Need help getting started? Check out our
  24. <a href="{% site_root %}/docs/">help documentation</a>.
  25. Or, just reply to this email with any questions or issues you have.
  26. {% endblock %}