forked from mirrors/bookwyrm
10 lines
313 B
HTML
10 lines
313 B
HTML
{% extends 'email/text_layout.html' %}
|
|
{% load i18n %}
|
|
{% block content %}
|
|
{% blocktrans %}You're invited to join {{ site_name }}! Click the link below to create an account.{% endblocktrans %}
|
|
|
|
{{ invite_link }}
|
|
|
|
{% trans "Learn more about this instance:" %} https://{{ domain }}{% url 'about' %}
|
|
|
|
{% endblock %}
|