summaryrefslogtreecommitdiff
path: root/workshop_app/templates/registration
diff options
context:
space:
mode:
authoradityacp2020-07-27 16:54:17 +0530
committeradityacp2020-07-27 17:09:10 +0530
commitfb1a97935d5c4f675987acf02e1e85dac3e7e72c (patch)
tree9ea804f9d179d4043ac2854b1c9558316df36a2d /workshop_app/templates/registration
parent96102991ed192ca6a0c48cad4e63b604c0ce6d70 (diff)
downloadworkshop_booking-fb1a97935d5c4f675987acf02e1e85dac3e7e72c.tar.gz
workshop_booking-fb1a97935d5c4f675987acf02e1e85dac3e7e72c.tar.bz2
workshop_booking-fb1a97935d5c4f675987acf02e1e85dac3e7e72c.zip
Change design and url patterns
Diffstat (limited to 'workshop_app/templates/registration')
-rw-r--r--workshop_app/templates/registration/password_reset_complete.html2
-rw-r--r--workshop_app/templates/registration/password_reset_done.html2
-rw-r--r--workshop_app/templates/registration/password_reset_form.html2
3 files changed, 3 insertions, 3 deletions
diff --git a/workshop_app/templates/registration/password_reset_complete.html b/workshop_app/templates/registration/password_reset_complete.html
index 7b07cf8..13c4e8e 100644
--- a/workshop_app/templates/registration/password_reset_complete.html
+++ b/workshop_app/templates/registration/password_reset_complete.html
@@ -6,7 +6,7 @@
<center>
<div class="container">
<p>Your password has been reset. </p>
- <p><a href="{{ login_url }}" class="btn btn-success btn-lg">Log in</a></p>
+ <p><a href="{% url 'workshop_app:index' %}" class="btn btn-success btn-lg">Log in</a></p>
</div>
</center>
{% endblock %}
diff --git a/workshop_app/templates/registration/password_reset_done.html b/workshop_app/templates/registration/password_reset_done.html
index bc10a8d..b66f42b 100644
--- a/workshop_app/templates/registration/password_reset_done.html
+++ b/workshop_app/templates/registration/password_reset_done.html
@@ -9,6 +9,6 @@
Instruction for setting new password has been mailed to your registered email address
</div>
<br>
-<a class="btn btn-primary btn-lg" href="{% url 'index' %}">Go to Login</a>
+<a class="btn btn-primary btn-lg" href="{% url 'workshop:index' %}">Go to Login</a>
</center>
{% endblock %}
diff --git a/workshop_app/templates/registration/password_reset_form.html b/workshop_app/templates/registration/password_reset_form.html
index 031fd96..21bfee6 100644
--- a/workshop_app/templates/registration/password_reset_form.html
+++ b/workshop_app/templates/registration/password_reset_form.html
@@ -20,7 +20,7 @@
<button class="btn btn-success btn-lg" type="submit">
Request
</button>
- <a href="{% url 'index' %}" class="btn btn-primary btn-lg">
+ <a href="{% url 'workshop_app:index' %}" class="btn btn-primary btn-lg">
Cancel
</a>
</form>