summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/registration/activation_complete.html
blob: 7db8c186e1df1a9d9da2b236e0929c14cc4ca004 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% extends "base.html" %}
{% load i18n %}

{% block content %}
<div class='info'>
<p>{% trans "You may now login with your username and password." %}</p>
{% if not user.is_authenticated %}
<a href="{% url "auth_login" %}">{% trans "Login now" %}</a>
{% else %}
<a href="/">{% trans "Home" %}</a>
{% endif %}
</div>
{% endblock %}