diff options
Diffstat (limited to 'project/templates/registration/activation_complete.html')
-rwxr-xr-x | project/templates/registration/activation_complete.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/project/templates/registration/activation_complete.html b/project/templates/registration/activation_complete.html new file mode 100755 index 0000000..3035a4f --- /dev/null +++ b/project/templates/registration/activation_complete.html @@ -0,0 +1,30 @@ +{% 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 can login to your account now. + </table> + <script type="text/javascript"> + document.getElementById('id_username').focus(); + </script> + </div> +{% endblock %} |