template/registration/activate.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Mon, 12 Oct 2009 20:01:12 +0530
changeset 29 4df0f5739386
parent 27 87910f9bd6ec
child 31 aa68a264b036
permissions -rwxr-xr-x
Added activation complete template.
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>
29
4df0f5739386 Added activation complete template.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 27
diff changeset
    23
          Your activation failed because of either the invalid activation key
4df0f5739386 Added activation complete template.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 27
diff changeset
    24
          or because your activation key has expired.
27
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 %}