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.

51 lines
1.8 KiB

9 years ago
9 years ago
  1. {% extends "emails/base.html" %}
  2. {% load hc_extras %}
  3. {% block content %}
  4. <h1>Hello,</h1>
  5. {% if inviting_profile %}
  6. <p><strong>{{ inviting_profile }}</strong> invites you to their
  7. <a href="{% site_root %}">{% site_name %}</a> account.</p>
  8. <p>You will be able to manage their
  9. existing monitoring checks and set up new ones. If you already have your
  10. own account on healthchecks<span>.</span>io, you will be able to switch
  11. between the two
  12. accounts.</p>
  13. {% endif %}
  14. <p>To log into <a href="{% site_root %}">{% site_name %}</a>, please press the button below:</p>
  15. <!-- Action -->
  16. <table class="body-action" align="center" width="100%" cellpadding="0" cellspacing="0">
  17. <tr>
  18. <td align="center">
  19. <div>
  20. <!--[if mso]><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="{{ login_link }}" style="height:45px;v-text-anchor:middle;width:200px;" arcsize="7%" stroke="f" fill="t">
  21. <v:fill type="tile" color="#22BC66" />
  22. <w:anchorlock/>
  23. <center style="color:#ffffff;font-family:sans-serif;font-size:15px;">Confirm your account</center>
  24. </v:roundrect><![endif]-->
  25. <a href="{{ login_link }}" class="button button--green">Log In</a>
  26. </div>
  27. </td>
  28. </tr>
  29. </table>
  30. <p>Thanks,<br>The Healthchecks<span>.</span>io</a> Team</p>
  31. <p>
  32. <strong>P.S.</strong> Need help getting started? Check out our
  33. <a href="{% site_root %}/docs/">help documentation</a>.
  34. Or, just reply to this email with any questions or issues you have.
  35. </p>
  36. <!-- Sub copy -->
  37. <table class="body-sub">
  38. <tr>
  39. <td>
  40. <p class="sub">If you’re having trouble clicking the log in button, copy and paste the URL below into your web browser.
  41. </p>
  42. <p class="sub"><a href="{{ login_link }}">{{ login_link }}</a></p>
  43. </td>
  44. </tr>
  45. </table>
  46. {% endblock %}