blob: 6493cbe9b573d4850341b2c341fc2c3f26412a81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{% extends 'website/templates/base.html' %}
{% load widget_tweaks %}
{% load static %}
{% block title %}Successful{% endblock %}
{% block cssblock %}
<link rel="stylesheet" href="{% static 'website/css/login.css' %}" type="text/css" media="screen" charset="utf-8" />
{% endblock %}
{% block search %}
{% endblock %}
{% block content %}
<br/><br/>
<h4>Thank you for registering.<br/>
Your account activation link has been sent to the email id provided.</h4>
{% endblock %}
|