view templates/registration/activate.html @ 26:d534172de5d5

Fix typo in URL
author Jordi Gutiérrez Hermoso <jordigh@gmail.com>
date Mon, 28 Jun 2010 22:02:07 -0500
parents 2e7226e90157
children e019ca8e14f6
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 %}