diff options
author | CruiseDevice | 2018-08-20 14:34:36 +0530 |
---|---|---|
committer | CruiseDevice | 2018-08-20 14:40:32 +0530 |
commit | 77c37a0b372e5e43fc761a70599a945e9e48ef58 (patch) | |
tree | 5ee4112adbd3e066c75a47210613685e2c6ddd1f /sbhs/templates/modals.html | |
parent | ea0f3944ab5330bbde99fc22c9903f25a92ee98e (diff) | |
download | sbhs_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.html | 29 |
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">×</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">×</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 |