summaryrefslogtreecommitdiff
path: root/sbhs/templates/modals.html
diff options
context:
space:
mode:
authorCruiseDevice2018-08-20 14:34:36 +0530
committerCruiseDevice2018-08-20 14:40:32 +0530
commit77c37a0b372e5e43fc761a70599a945e9e48ef58 (patch)
tree5ee4112adbd3e066c75a47210613685e2c6ddd1f /sbhs/templates/modals.html
parentea0f3944ab5330bbde99fc22c9903f25a92ee98e (diff)
downloadsbhs_server-77c37a0b372e5e43fc761a70599a945e9e48ef58.tar.gz
sbhs_server-77c37a0b372e5e43fc761a70599a945e9e48ef58.tar.bz2
sbhs_server-77c37a0b372e5e43fc761a70599a945e9e48ef58.zip
static and template files
Diffstat (limited to 'sbhs/templates/modals.html')
-rw-r--r--sbhs/templates/modals.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/sbhs/templates/modals.html b/sbhs/templates/modals.html
new file mode 100644
index 0000000..d23f879
--- /dev/null
+++ b/sbhs/templates/modals.html
@@ -0,0 +1,29 @@
+{% if user.is_authenticated %}
+<div class="modal hide fade" id="passwordModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
+ <div class="modal-header">
+ <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
+ <h3>Change Password</h3>
+ </div>
+ <div class="modal-body">
+ <p>Please click following button to send password change link to your email address.</p>
+ </div>
+ <div class="modal-footer">
+ <a data-dismiss="modal" aria-hidden="true" class="btn">Close</a>
+ <a href="" class="btn btn-primary">Send password change link</a>
+ </div>
+</div>
+
+
+<div class="modal hide fade" id="machineModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
+ <div class="modal-header">
+ <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
+ <h3>Machine change</h3>
+ </div>
+ <div class="modal-body">
+ <p>Please send an email to rupakrokade@iitb.ac.in stating the reasons why machine change is required.</p>
+ </div>
+ <div class="modal-footer">
+ <a data-dismiss="modal" aria-hidden="true" class="btn">Close</a>
+ </div>
+</div>
+{% endif %} \ No newline at end of file