summaryrefslogtreecommitdiffstats
path: root/forum/skins/default/templates/auth/temp_login_email.html
blob: 063608fe1d83c0dd17c84f2af387d35189fbfd7a (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 "You're seeing this because someone requested a temporary login link" %}</p>

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

    <p>{% trans "Following the link above will give you access to your account." %}</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 %}