project/templates/registration/activate.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Wed, 11 Nov 2009 15:57:57 +0530
changeset 26 e3e4bcbc7c19
parent 25 ad091ba95653
child 27 1d772726c9d7
permissions -rwxr-xr-x
Made a small textual change in the registrations template.

{% extends "base.html" %}

{% load i18n %}

{% block content %}
  <div class="post">
    <div class="title"><h2>{% trans "Register" %}</h2></div>
    <div id="search">
    <style type="text/css">
    ul.errorlist {
        margin: 0;
        padding: 0;
    }
    .errorlist li {        
        color: red;
        display: block;
        font-size: 10px;
        margin: 0 1 3px;
        padding: 0px 45px;
    }
</style>
        <table>
          Your account has been activated and registration procedure is complete.
          You have also been automatically logged into your account.
        </table>
      <script type="text/javascript">
	document.getElementById('id_username').focus();
      </script>
   </div>
{% endblock %}