template/registration/activate.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Mon, 12 Oct 2009 19:33:02 +0530
changeset 27 87910f9bd6ec
child 29 4df0f5739386
permissions -rwxr-xr-x
Corrected and added registration and activation templates.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
27
87910f9bd6ec Corrected and added registration and activation templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     1
{% extends "index.html" %}
87910f9bd6ec Corrected and added registration and activation templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     2
87910f9bd6ec Corrected and added registration and activation templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     3
{% load i18n %}
87910f9bd6ec Corrected and added registration and activation templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     4
87910f9bd6ec Corrected and added registration and activation templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     5
{% block centercontent %}
87910f9bd6ec Corrected and added registration and activation templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     6
  <div class="post">
87910f9bd6ec Corrected and added registration and activation templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     7
    <div class="title"><h2>{% trans "Register" %}</h2></div>
87910f9bd6ec Corrected and added registration and activation templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     8
    <div id="search">
87910f9bd6ec Corrected and added registration and activation templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     9
    <style type="text/css">
87910f9bd6ec Corrected and added registration and activation templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    10
    ul.errorlist {
87910f9bd6ec Corrected and added registration and activation templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    11
        margin: 0;
87910f9bd6ec Corrected and added registration and activation templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    12
        padding: 0;
87910f9bd6ec Corrected and added registration and activation templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    13
    }
87910f9bd6ec Corrected and added registration and activation templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    14
    .errorlist li {        
87910f9bd6ec Corrected and added registration and activation templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    15
        color: red;
87910f9bd6ec Corrected and added registration and activation templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    16
        display: block;
87910f9bd6ec Corrected and added registration and activation templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    17
        font-size: 10px;
87910f9bd6ec Corrected and added registration and activation templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    18
        margin: 0 1 3px;
87910f9bd6ec Corrected and added registration and activation templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    19
        padding: 0px 45px;
87910f9bd6ec Corrected and added registration and activation templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    20
    }
87910f9bd6ec Corrected and added registration and activation templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    21
</style>
87910f9bd6ec Corrected and added registration and activation templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    22
        <table>
87910f9bd6ec Corrected and added registration and activation templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    23
          Your account has been activated and registration procedure is complete.
87910f9bd6ec Corrected and added registration and activation templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    24
          You can login to your account now.
87910f9bd6ec Corrected and added registration and activation templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    25
        </table>
87910f9bd6ec Corrected and added registration and activation templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    26
      <script type="text/javascript">
87910f9bd6ec Corrected and added registration and activation templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    27
	document.getElementById('id_username').focus();
87910f9bd6ec Corrected and added registration and activation templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    28
      </script>
87910f9bd6ec Corrected and added registration and activation templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    29
   </div>
87910f9bd6ec Corrected and added registration and activation templates.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    30
{% endblock %}