summaryrefslogtreecommitdiffstats
path: root/forum/skins/default/templates/auth/email_validation.html
blob: a4126a69895b4ebc6bead6ede4e247f2ed26beef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends "email_base.html" %}
{% load i18n %}
{% load extra_tags %}

{% block content %}
    <p>{% trans "Greetings from the Q&A forum" %},</p>

    <p>{% trans "To make use of the Forum, please follow the link below:" %}</p>

    <a href="{% fullurl auth_validate_email user=user.id,code=validation_code %}">{% fullurl auth_validate_email user=user.id,code=validation_code %}</a>

    <p>{% trans "Following the link above will help us verify your email address." %}</p>

    <p>{% blocktrans %}If you beleive that this message was sent in mistake -
    no further action is needed. Just ingore this email, we apologize
    for any inconvenience{% endblocktrans %}</p>

    <p>{% blocktrans %}Sincerely,<br />
    Forum Administrator{% endblocktrans %}</p>
{% endblock %}