+
+
+
+
+
+
+
+
+ {% block js %}
+ {% endblock %}
+
+
diff --git a/templates/closemodal.html b/templates/closemodal.html
new file mode 100644
index 00000000..56f2e90d
--- /dev/null
+++ b/templates/closemodal.html
@@ -0,0 +1,8 @@
+{% if messages %}
+ {% for message in messages %}
+
+ {% endfor %}
+{% endif %}
+
\ No newline at end of file
diff --git a/templates/form_errors.html b/templates/form_errors.html
new file mode 100644
index 00000000..03864874
--- /dev/null
+++ b/templates/form_errors.html
@@ -0,0 +1,14 @@
+{% load nice_errors from filters %}
+{% if form.errors %}
+
+
+
+ {% with form|nice_errors as qq %}
+ {% for error_name,desc in qq.items %}
+
{{error_name}}
+
{{desc}}
+ {% endfor %}
+ {% endwith %}
+
+
+{% endif %}
\ No newline at end of file
diff --git a/templates/pagination.html b/templates/pagination.html
new file mode 100644
index 00000000..dec49e47
--- /dev/null
+++ b/templates/pagination.html
@@ -0,0 +1,27 @@
+{% if is_paginated %}
+
+{% endif %}
\ No newline at end of file
diff --git a/templates/registration/acceptance_email.txt b/templates/registration/acceptance_email.txt
new file mode 100644
index 00000000..ece37f81
--- /dev/null
+++ b/templates/registration/acceptance_email.txt
@@ -0,0 +1,12 @@
+{% load url from future %}
+Welcome {{ profile.first_name }},
+
+You request to become a user on {{ site }} has been approved by an administrator.
+
+To continue the registration process please visit http://{{ site.domain }}{% url 'registration_activate' activation_key=activation_key %}.
+This link will be active for the next {{ expiration_days }} days.
+
+{% if message %}
+Message from administrator:
+{{ message }}
+{% endif %}
\ No newline at end of file
diff --git a/templates/registration/acceptance_email_subject.txt b/templates/registration/acceptance_email_subject.txt
new file mode 100644
index 00000000..cc20c8a7
--- /dev/null
+++ b/templates/registration/acceptance_email_subject.txt
@@ -0,0 +1 @@
+{{ site }} user {{ user }} activation {{ activation_key }}
\ No newline at end of file
diff --git a/templates/registration/activation_complete.html b/templates/registration/activation_complete.html
new file mode 100644
index 00000000..4797ef69
--- /dev/null
+++ b/templates/registration/activation_complete.html
@@ -0,0 +1,10 @@
+{% extends 'base.html' %}
+
+{% block title %}Activation Complete{% endblock %}
+
+{% block content %}
+
+
Activation Complete
+
You user account is now fully registered. Enjoy RIGS
+
+{% endblock %}
\ No newline at end of file
diff --git a/templates/registration/activation_email.txt b/templates/registration/activation_email.txt
new file mode 100644
index 00000000..6574286f
--- /dev/null
+++ b/templates/registration/activation_email.txt
@@ -0,0 +1,5 @@
+Congratulations {{ user.first_name }}. You are now fully registered on {{ site }}.
+
+{% if is_generated %}
+You password for this site has been automatically set to {{ password }}. It is recommend you change this as soon as possible.
+{% endif %}
\ No newline at end of file
diff --git a/templates/registration/activation_email_subject.txt b/templates/registration/activation_email_subject.txt
new file mode 100644
index 00000000..e35ae77a
--- /dev/null
+++ b/templates/registration/activation_email_subject.txt
@@ -0,0 +1 @@
+{{ user }} activation successful
\ No newline at end of file
diff --git a/templates/registration/activation_form.html b/templates/registration/activation_form.html
new file mode 100644
index 00000000..2df0849b
--- /dev/null
+++ b/templates/registration/activation_form.html
@@ -0,0 +1,17 @@
+{% extends 'base.html' %}
+{% load widget_tweaks %}
+{% block title %}Activation{% endblock %}
+
+{% block content %}
+
+{% endblock %}
\ No newline at end of file
diff --git a/templates/registration/logged_out.html b/templates/registration/logged_out.html
new file mode 100644
index 00000000..47a0abc6
--- /dev/null
+++ b/templates/registration/logged_out.html
@@ -0,0 +1,10 @@
+{% extends 'base.html' %}
+
+{% block title %}Logout Successful{% endblock %}
+
+{% block content %}
+
+
Logout Successful
+
You have successfully been logged out of RIGS
+
+{% endblock %}
\ No newline at end of file
diff --git a/templates/registration/login.html b/templates/registration/login.html
new file mode 100644
index 00000000..ace80d16
--- /dev/null
+++ b/templates/registration/login.html
@@ -0,0 +1,7 @@
+{% extends 'base.html' %}
+
+{% block title %}Login{% endblock %}
+
+{% block content %}
+{% include 'registration/loginform.html' %}
+{% endblock %}
\ No newline at end of file
diff --git a/templates/registration/loginform.html b/templates/registration/loginform.html
new file mode 100644
index 00000000..45bfe5f1
--- /dev/null
+++ b/templates/registration/loginform.html
@@ -0,0 +1,22 @@
+{% load url from future %}
+{% load widget_tweaks %}
+{% if form.errors %}
+
Your username or password was incorrect
+{% endif %}
+
+
+
+
\ No newline at end of file
diff --git a/templates/registration/notification_email.txt b/templates/registration/notification_email.txt
new file mode 100644
index 00000000..33c46ba9
--- /dev/null
+++ b/templates/registration/notification_email.txt
@@ -0,0 +1,3 @@
+A new user has just registered on {{ site }} with username {{ user.username }} and email {{ user.email }}.
+
+Please visit {{ site.domain }}{% url admin:registration_registrationprofile_change user.registration_profile.id %} to moderate this activation.
\ No newline at end of file
diff --git a/templates/registration/notification_email_subject.txt b/templates/registration/notification_email_subject.txt
new file mode 100644
index 00000000..a7b01a57
--- /dev/null
+++ b/templates/registration/notification_email_subject.txt
@@ -0,0 +1 @@
+{{ site }} New User Approval Require
\ No newline at end of file
diff --git a/templates/registration/password_change_form.html b/templates/registration/password_change_form.html
new file mode 100644
index 00000000..ea8abb41
--- /dev/null
+++ b/templates/registration/password_change_form.html
@@ -0,0 +1,56 @@
+{% extends "admin/base_site.html" %}
+{% load i18n static %}
+{% load url from future %}
+{% block extrastyle %}{{ block.super }}{% endblock %}
+{% block userlinks %}{% url 'django-admindocs-docroot' as docsroot %}{% if docsroot %}{% trans 'Documentation' %} / {% endif %} {% trans 'Change password' %} / {% trans 'Log out' %}{% endblock %}
+{% block breadcrumbs %}
+
{% trans "We've e-mailed you instructions for setting your password to the e-mail address you submitted. You should be receiving it shortly." %}
+
+{% endblock %}
diff --git a/templates/registration/password_reset_email.html b/templates/registration/password_reset_email.html
new file mode 100644
index 00000000..4743e04c
--- /dev/null
+++ b/templates/registration/password_reset_email.html
@@ -0,0 +1,14 @@
+{% load i18n %}{% load url from future %}{% autoescape off %}
+{% blocktrans %}You're receiving this e-mail because you requested a password reset for your user account at {{ site_name }}.{% endblocktrans %}
+
+{% trans "Please go to the following page and choose a new password:" %}
+{% block reset_link %}
+{{ protocol }}://{{ domain }}{% url 'auth_password_reset_confirm' uidb64=uid token=token %}
+{% endblock %}
+{% trans "Your username, in case you've forgotten:" %} {{ user.username }}
+
+{% trans "Thanks for using our site!" %}
+
+{% blocktrans %}The {{ site_name }} team{% endblocktrans %}
+
+{% endautoescape %}
diff --git a/templates/registration/password_reset_form.html b/templates/registration/password_reset_form.html
new file mode 100644
index 00000000..bbe77669
--- /dev/null
+++ b/templates/registration/password_reset_form.html
@@ -0,0 +1,34 @@
+{% extends 'base.html' %}
+{% load i18n %}
+{% load widget_tweaks %}
+
+{% block title %}Password reset{% endblock %}
+
+{% block content %}
+
+
Password Reset
+
+
{% trans "Forgotten your password? Enter your e-mail address below, and we'll e-mail instructions for setting a new one." %}
+
+
+
+
+
+{% endblock %}
\ No newline at end of file
diff --git a/templates/registration/registration_complete.html b/templates/registration/registration_complete.html
new file mode 100644
index 00000000..23827032
--- /dev/null
+++ b/templates/registration/registration_complete.html
@@ -0,0 +1,10 @@
+{% extends 'base.html' %}
+
+{% block title %}Registration complete{% endblock %}
+
+{% block content %}
+
+
Thanks for registering
+
Thanks for registering with RIGS, you application will now be moderated by an administrator and further instructions will be emailed to you
+
+{% endblock %}
\ No newline at end of file
diff --git a/templates/registration/registration_email.txt b/templates/registration/registration_email.txt
new file mode 100644
index 00000000..a32116ee
--- /dev/null
+++ b/templates/registration/registration_email.txt
@@ -0,0 +1,3 @@
+You account has been created but now requires approval by one of our moderation team.
+
+Please wait while this is done.
\ No newline at end of file
diff --git a/templates/registration/registration_email_subject.txt b/templates/registration/registration_email_subject.txt
new file mode 100644
index 00000000..7d469366
--- /dev/null
+++ b/templates/registration/registration_email_subject.txt
@@ -0,0 +1 @@
+{{ site }} User Awaiting Approval
\ No newline at end of file
diff --git a/templates/registration/registration_form.html b/templates/registration/registration_form.html
new file mode 100644
index 00000000..aa6ec221
--- /dev/null
+++ b/templates/registration/registration_form.html
@@ -0,0 +1,32 @@
+{% extends 'base.html' %}
+{% load widget_tweaks %}
+{% block title %}Registration{% endblock %}
+
+{% block content %}
+{% if form.errors or supplement_form.errors %}
+
+ {{form.errors}}
+ {{supplement_form.errors}}
+
+{% endif %}
+
+
+{% endblock %}
\ No newline at end of file