From b3b14fbeb1646b2af371e1fd78883e11115609ed Mon Sep 17 00:00:00 2001 From: Guilhem Saurel Date: Sun, 12 Jun 2016 22:14:08 +0200 Subject: [PATCH] registration_form --- .../registration/registration_form.html | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 accounts/templates/registration/registration_form.html diff --git a/accounts/templates/registration/registration_form.html b/accounts/templates/registration/registration_form.html new file mode 100644 index 0000000..dcaf0a0 --- /dev/null +++ b/accounts/templates/registration/registration_form.html @@ -0,0 +1,35 @@ +{% extends 'base.html' %} + +{% load bootstrap3 %} + +{% block content %} + + + +
+
+
+
+ {% bootstrap_form form %} + {% csrf_token %} +
+ + Reset your password + Cancel +
+
+
+
+
+ +
+
+ You do not have an account? Please register. +
+
+ +{% endblock %}