33 lines
871 B
HTML
33 lines
871 B
HTML
{% extends "emailbase.html" %}
|
|
|
|
{% block body %}
|
|
<p>Dear <strong>{{ name }}</strong>,</p>
|
|
|
|
<p>
|
|
{{ coach }} is offering to become your coach on rowsandall.com.
|
|
</p>
|
|
<p>
|
|
By accepting the invite, {{ coach }} will have access to your
|
|
data and will be able to upload workouts and run analysis on rowsandall.com
|
|
on behalf of you.
|
|
</p>
|
|
<p>
|
|
By accepting the invite, you are agreeing with the sharing
|
|
of personal data according to our privacy policy.
|
|
</p>
|
|
<p>
|
|
To accept, 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>
|
|
</p>
|
|
<p>
|
|
You can also click the direct link:
|
|
<a href="{{ siteurl }}/rowers/me/coachoffer/{{ code }}/accept/">
|
|
{{ siteurl }}/rowers/me/coachoffer/{{ code }}/accept</a>
|
|
</p>
|
|
|
|
<p>
|
|
Best Regards, the Rowsandall Team
|
|
</p>
|
|
{% endblock %}
|