view templates/registration/activate.html @ 23:d9658d30b814

Implement initial user registration and authentication. Still way buggy.
author Jordi Gutiérrez Hermoso <jordigh@gmail.com>
date Sun, 27 Jun 2010 21:56:57 -0500
parents
children 2e7226e90157
line wrap: on
line source

{% extends "controls.djhtml" %}

{% block content %}
<div id="info">
  <h3>
    Account activation
  </h3>
  <div class="whitebox">
    {% if account %}
    <p>
      Account successfully activated. 
      <a href="{% url auth_login%}">Click here</a> to log in.
    </p>

    {% else %}

    <p>
      Account activation failed" %}
    </p>

    {% endif %}

  </div>
</div>
{% endblock %}