-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdelete_assigment_modal.php
More file actions
21 lines (20 loc) · 928 Bytes
/
Copy pathdelete_assigment_modal.php
File metadata and controls
21 lines (20 loc) · 928 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!-- Modal -->
<div id="<?php echo $id; ?>" class="modal hide fade" 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">x</button>
<h3 id="myModalLabel">Delete Assignment</h3>
</div>
<div class="modal-body">
<div class="alert alert-danger">
Are you sure you want to delete this Assignment?
</div>
</div>
<div class="modal-footer">
<form method="post" action="delete_assignment.php">
<button class="btn" data-dismiss="modal" aria-hidden="true"><i class="icon-remove icon-large"></i> Close</button>
<input type="hidden" name="id" value="<?php echo $id; ?>">
<input type="hidden" name="get_id" value="<?php echo $get_id; ?>">
<button class="btn btn-danger" name="change"><i class="icon-check icon-large"></i> Yes</button>
</form>
</div>
</div>