22 lines
677 B
HTML
22 lines
677 B
HTML
{% import "templates/emails/macros.html" as utils %}
|
|
{% extends "templates/emails/saas.html" %}
|
|
{% set title = title %}
|
|
{% set image_path = image_path %}
|
|
{% set read_pixel_path = read_pixel_path %}
|
|
|
|
{% block content %}
|
|
|
|
<td class="text-base leading-6 text-gray-900">
|
|
<div class="p-8 bg-white from-markdown">
|
|
<p>Please click on the button below to reset your password. If this was not you, please ignore this email.</p>
|
|
{{ utils.button('Reset Password', link, true) }}
|
|
{{ utils.separator() }}
|
|
<p class="my-0">Team Jingrow</p>
|
|
</div>
|
|
{% if read_pixel_path %}
|
|
<img src="{{ read_pixel_path }}">
|
|
{% endif %}
|
|
</td>
|
|
|
|
{% endblock %}
|