diff options
author | Akshen Doke | 2017-03-09 11:35:09 +0530 |
---|---|---|
committer | Akshen | 2017-05-19 15:30:31 +0530 |
commit | 5e4d54c0f67bf0cb6f90202997a47b914af6beb3 (patch) | |
tree | e4beb2c61bd060d9fc0ae2132eda78ea65421186 | |
parent | 780485fe9fd63aa0a65084732570620ba7d37878 (diff) | |
download | workshop_booking-5e4d54c0f67bf0cb6f90202997a47b914af6beb3.tar.gz workshop_booking-5e4d54c0f67bf0cb6f90202997a47b914af6beb3.tar.bz2 workshop_booking-5e4d54c0f67bf0cb6f90202997a47b914af6beb3.zip |
handle Registeration Failure
-rw-r--r-- | workshop_app/templates/workshop_app/registeration_error.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/workshop_app/templates/workshop_app/registeration_error.html b/workshop_app/templates/workshop_app/registeration_error.html new file mode 100644 index 0000000..7e2c9d8 --- /dev/null +++ b/workshop_app/templates/workshop_app/registeration_error.html @@ -0,0 +1,13 @@ +{% extends 'workshop_app/base.html' %} + +{% block title %} + Registeration Error +{% endblock %} + +{% block content %} + <div class="container" > + <br> + <h1>Error Occurred While registration</h1> + <h3>Please try to <a href="{{ URL_ROOT }}/register"> register again</a> using different username or email and see to it that you fill all the fields.</h3> + </div> + {% endblock %}
\ No newline at end of file |