diff options
Diffstat (limited to '')
-rw-r--r-- | ctrack/templates/account/signup_closed.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/ctrack/templates/account/signup_closed.html b/ctrack/templates/account/signup_closed.html new file mode 100644 index 0000000..2322f17 --- /dev/null +++ b/ctrack/templates/account/signup_closed.html @@ -0,0 +1,12 @@ +{% extends "account/base.html" %} + +{% load i18n %} + +{% block head_title %}{% trans "Sign Up Closed" %}{% endblock %} + +{% block inner %} +<h1>{% trans "Sign Up Closed" %}</h1> + +<p>{% trans "We are sorry, but the sign up is currently closed." %}</p> +{% endblock %} + |