20 lines
595 B
HTML
20 lines
595 B
HTML
{% import "templates/emails/macros.html" as utils %}
|
|
{% extends "templates/emails/base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
<td class="text-base leading-6 text-gray-900">
|
|
<div class="p-8 bg-white from-markdown">
|
|
<p>Hello,</p>
|
|
<p>Partner {{ partner }} has raised a request to link your certificate with their Jingrow Cloud team account.</p>
|
|
<p>
|
|
Confirm your consent by clicking on the following button.
|
|
</p>
|
|
{{ utils.button('Approve', link, true) }}
|
|
{{ utils.separator() }}
|
|
{{ utils.signature() }}
|
|
</div>
|
|
</td>
|
|
|
|
{% endblock %}
|