12 lines
388 B
HTML
12 lines
388 B
HTML
|
{% extends "registration/registration_base.html" %}
|
||
|
{% load i18n %}
|
||
|
{% url 'auth_login' as auth_login_url %}
|
||
|
{% block title %}{% trans "Activation complete" %}{% endblock %}
|
||
|
{% block content %}
|
||
|
{% blocktrans %}
|
||
|
Thanks, activation complete! You may now <a href='{{ auth_login_url }}'>login</a> using the username and password you set at registration.
|
||
|
{% endblocktrans %}
|
||
|
{% endblock %}
|
||
|
|
||
|
|