9 lines
337 B
HTML
9 lines
337 B
HTML
{% extends "registration/base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans "Registration complete" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{% trans Check your email %}</h1>
|
|
<p>{% trans "An activation link has been sent to the email address you supplied, along with instructions for activating your account."%}</p>
|
|
{% endblock %} |