diff options
author | Wookey <wookey@wookware.org> | 2011-07-11 23:28:23 +0100 |
---|---|---|
committer | Wookey <wookey@wookware.org> | 2011-07-11 23:28:23 +0100 |
commit | ded3d58da16a609ce49fa393b70a93acd22a9d1e (patch) | |
tree | 24de35f27ab4783629bee9a8424540cecd01b728 /templates/registration/activate.html | |
parent | 3b028661f627227d7325c65adc134c3831e854d3 (diff) | |
parent | b6a1503c7a00a582fa08cb5cfb97490f8bfa07aa (diff) | |
download | troggle-ded3d58da16a609ce49fa393b70a93acd22a9d1e.tar.gz troggle-ded3d58da16a609ce49fa393b70a93acd22a9d1e.tar.bz2 troggle-ded3d58da16a609ce49fa393b70a93acd22a9d1e.zip |
rest of martin's changes, without reverting lineend issues
Diffstat (limited to 'templates/registration/activate.html')
-rw-r--r-- | templates/registration/activate.html | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/templates/registration/activate.html b/templates/registration/activate.html index ba6be92..3f95a18 100644 --- a/templates/registration/activate.html +++ b/templates/registration/activate.html @@ -1,25 +1,25 @@ -{% extends "base.html" %}
-
-{% block title %}
-New troggle account registered
-{% endblock %}
-
-{% block header %}
-<h1>activate.html</h1>
-{% endblock %}
-
-{% block content %}
-
-{% if account %}
-<p>
-Hello, {{ account }}! Your account is now activated. Now you can <a href="{%url auth_login%}">log in</a> with the password you chose. Use the links in the upper right to control this in the future.
-</p>
-
-<p>
-If you have been on the expedition in the past, you already have a profile in the system; <a href={% url profiles_select_profile %}>click here </a> to find it and link it to your account. Otherwise, please <a href={% url profiles_create_profile %}> create yourself a new profile</a>.
-</p>
-{% else %}
-
-The activation key you entered has already been used or was invalid.
-{% endif %}
+{% extends "base.html" %} + +{% block title %} +New troggle account registered +{% endblock %} + +{% block header %} +<h1>activate.html</h1> +{% endblock %} + +{% block content %} + +{% if account %} +<p> +Hello, {{ account }}! Your account is now activated. Now you can <a href="{%url auth_login%}">log in</a> with the password you chose. Use the links in the upper right to control this in the future. +</p> + +<p> +If you have been on the expedition in the past, you already have a profile in the system; <a href={% url profiles_select_profile %}>click here </a> to find it and link it to your account. Otherwise, please <a href={% url profiles_create_profile %}> create yourself a new profile</a>. +</p> +{% else %} + +The activation key you entered has already been used or was invalid. +{% endif %} {% endblock %} |