mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 17:43:46 +01:00
36 lines
936 B
HTML
36 lines
936 B
HTML
{% extends "emails/base.html" %}
|
|
|
|
{% block content %}
|
|
<h2 style="margin-top: 0;">{{ _("Hello!") }}</h2>
|
|
|
|
<p>
|
|
{{ _("This email has been sent to you because someone (hopefully you) has entered your email address as a user's email.") }}
|
|
</p>
|
|
|
|
<p>
|
|
{{ _("If it wasn't you, then just delete this email.") }}
|
|
</p>
|
|
|
|
<p>
|
|
{{ _("If this was you, then please click this link to confirm the address:") }}
|
|
</p>
|
|
|
|
<a class="btn" href="{{ abs_url_for('users.verify_email', token=token) }}">
|
|
{{ _("Confirm Email Address") }}
|
|
</a>
|
|
|
|
<p style="font-size: 80%;">
|
|
{{ _("Or paste this into your browser:") }}
|
|
<code>{{ abs_url_for('users.verify_email', token=token) }}</code>
|
|
<p>
|
|
|
|
{% endblock %}
|
|
|
|
{% block footer %}
|
|
{{ _("You are receiving this email because someone (hopefully you) entered your email address as a user's email.") }}
|
|
<br>
|
|
<a href="{{ abs_url_for('users.unsubscribe', token=sub.token) }}">
|
|
{{ _("Unsubscribe") }}
|
|
</a>
|
|
{% endblock %}
|