35 lines
962 B
HTML
35 lines
962 B
HTML
{% extends "emailbase.html" %}
|
|
|
|
{% block body %}
|
|
<p>Dear <strong>{{ coach }}</strong>,</p>
|
|
|
|
<p>
|
|
{{ name }} is inviting you to become his/her coach
|
|
on rowsandall.com
|
|
</p>
|
|
<p>
|
|
By accepting the invite, you will have access to {{ name }}'s
|
|
data and will be able to upload workouts and run analysis on rowsandall.com
|
|
on behalf of {{ name }}.
|
|
</p>
|
|
<p>
|
|
By accepting the invite, you are agreeing with the sharing
|
|
of personal data according to our privacy policy.
|
|
</p>
|
|
<p>
|
|
To accept the login to the
|
|
site and you will find the invitation here on the Teams page:
|
|
<a href="{{ siteurl }}/rowers/me/teams">{{ siteurl }}/rowers/me/teams</a>,
|
|
including the email address of {{ name }}, if you need a contact.
|
|
</p>
|
|
<p>
|
|
You can also click the direct link:
|
|
<a href="{{ siteurl }}/rowers/me/coachrequest/{{ code }}/accept/">
|
|
{{ siteurl }}/rowers/me/coachrequest/{{ code }}/accept/</a>
|
|
</p>
|
|
|
|
<p>
|
|
Best Regards, the Rowsandall Team
|
|
</p>
|
|
{% endblock %}
|