summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'python/templates/registration')
-rw-r--r--python/templates/registration/bugzillauser.html10
-rw-r--r--python/templates/registration/logged_out.html5
-rw-r--r--python/templates/registration/login.html12
-rw-r--r--python/templates/registration/password_change_form.html13
4 files changed, 0 insertions, 40 deletions
diff --git a/python/templates/registration/bugzillauser.html b/python/templates/registration/bugzillauser.html
deleted file mode 100644
index d05d6ad..0000000
--- a/python/templates/registration/bugzillauser.html
+++ /dev/null
@@ -1,10 +0,0 @@
-{% extends 'layout/base.html' %}
-{% block title %}Bugzilla accounts{% endblock %}
-{% block content %}
- <h2>Bugzilla accounts</h2>
- <form method="post">
- {% csrf_token %}
- {{ form }}
- <button type="submit">Submit</button>
- </form>
-{% endblock %}
diff --git a/python/templates/registration/logged_out.html b/python/templates/registration/logged_out.html
deleted file mode 100644
index 94c6a0d..0000000
--- a/python/templates/registration/logged_out.html
+++ /dev/null
@@ -1,5 +0,0 @@
-{% extends "layout/base.html" %}
-{% block body_block %}
-<h1>Logged Out</h1>
- <p>You are now logged out.</p>
-{% endblock %}
diff --git a/python/templates/registration/login.html b/python/templates/registration/login.html
deleted file mode 100644
index 9503420..0000000
--- a/python/templates/registration/login.html
+++ /dev/null
@@ -1,12 +0,0 @@
-{% extends 'layout/base.html' %}
-
-{% block title %}Login{% endblock %}
-
-{% block content %}
- <h2>Login</h2>
- <form method="post">
- {% csrf_token %}
- {{ form.as_p }}
- <button type="submit">Login</button>
- </form>
-{% endblock %}
diff --git a/python/templates/registration/password_change_form.html b/python/templates/registration/password_change_form.html
deleted file mode 100644
index 7761fe4..0000000
--- a/python/templates/registration/password_change_form.html
+++ /dev/null
@@ -1,13 +0,0 @@
-{% extends 'layout/base.html' %}
-
-{% block title %}Change you password{% endblock %}
-
-{% block content %}
- <h1>Change you password</h1>
- <p>Use the form below to change your password.</p>
- <form action="." method="post">
- {{ form.as_p }}
- <p><input type="submit" value="Change"></p>
- {% csrf_token %}
- </form>
-{% endblock %}