summaryrefslogtreecommitdiff
path: root/sbhs/templates/modals.html
blob: 2381d745554a937da6fc67b3cb9813400a32a1f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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 reset password.</p>
    </div>
    <div class="modal-footer">
        <a data-dismiss="modal" aria-hidden="true" class="btn">Close</a>
        <a href="{% url 'password_reset' %}" class="btn btn-primary">Reset Password</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 %}