forked from mirrors/bookwyrm
15 lines
373 B
HTML
15 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 %}
|