expoweb/troggle/templates/registration/registration_complete.html
aaron 9c671e8ef0 [svn r8247] Enable profile setup forms.
Profiles are Person model instances, and are linked to django's built in User model by a one to one foreign key.

We are using the django-registration and django-profiles pluggables.
2009-02-18 22:35:18 +01:00

13 lines
534 B
HTML

{% extends "base.html" %}
{% block title %}
registration_complete.html | {{ block.super }}
{% endblock %}
{% block header %}
<h1>registration_complete.html</h1>
{% endblock %}
{% block content %}
Thank you for signing up, {{ user.username }}. An email with the activation code has been sent to your inbox. Please <a href={% url profiles_create_profile %}> create your profile</a>. If you have been on the expedition in the past, this step allows existing expedition data to be linked to your new account.
{% endblock %}