forked from mirrors/bookwyrm
20 lines
495 B
HTML
20 lines
495 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 %}
|
|
|
|
<p>
|
|
{% blocktrans trimmed %}
|
|
Or enter the code "<code>{{ confirmation_code }}</code>" at login.
|
|
{% endblocktrans %}
|
|
</p>
|
|
|
|
{% endblock %}
|