moviewyrm/bookwyrm/templates/email/confirm/html_content.html
2021-08-06 15:38:37 -07:00

14 lines
373 B
HTML

{% extends 'email/html_layout.html' %}
{% load i18n %}
{% block content %}
<p>
{% blocktrans trimmed %}
One last step before you join {{ site_name }}! Please confirm your email address by clicking the link below:
{% endblocktrans %}
</p>
{% trans "Confirm Email" as text %}
{% include 'email/snippets/action.html' with path=confirmation_link text=text %}
{% endblock %}