project/templates/registration/registration_complete.html
changeset 24 bb1f31e9c3ab
equal deleted inserted replaced
23:3cb3f853a193 24:bb1f31e9c3ab
       
     1 {% extends "base.html" %}
       
     2 
       
     3 {% load i18n %}
       
     4 
       
     5 {% block content %}
       
     6   <div class="post">
       
     7     <div class="title"><h2>{% trans "Register" %}</h2></div>
       
     8     <div id="search">
       
     9     <style type="text/css">
       
    10     ul.errorlist {
       
    11         margin: 0;
       
    12         padding: 0;
       
    13     }
       
    14     .errorlist li {        
       
    15         color: red;
       
    16         display: block;
       
    17         font-size: 10px;
       
    18         margin: 0 1 3px;
       
    19         padding: 0px 45px;
       
    20     }
       
    21 </style>
       
    22         <table>
       
    23           Your account has been created. An activation email will be sent
       
    24           soon to the email ID with which you registered.<br /><br />
       
    25           Please visit the link mentioned in the mail to activate your account.
       
    26         </table>
       
    27       <script type="text/javascript">
       
    28 	document.getElementById('id_username').focus();
       
    29       </script>
       
    30    </div>
       
    31 {% endblock %}