forked from Jmurrietasmith/EqManage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadminModal.php
58 lines (57 loc) · 2.39 KB
/
adminModal.php
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<div id="checkoutModal" class="modal" style="display: none;">
<!-- Modal content -->
<div class="modal-content" style="width: fit-content">
<span class="close" style="margin-bottom: 10px;" data-dismiss="modal" onclick="resetCoOption();">×</span>
<div class="select-style" style="width:500px; margin: auto;" align="center">
<div id="eqselectDiv">
<?php include('fetchCheckoutEq.php') ?>
</div>
<p> </p>
<select id="studentselect" style="width: 100%; margin-bottom: 10px">
<option value="">Student Name</option>
<?php
include('fetchName.php');
?>
</select>
<p> </p>
<select id="checkOutSelect" style="width: 100%; margin-bottom: 10px">
<option value=""></option>
<?php
include('fetchAllRq.php');
?>
</select>
<input id="checkout" name="request" type="submit" value="Confirm Checkout" style="width: 100%;" >
</div>
</div>
</div>
<div id="returnModal" class="modal" style="display: none;">
<div class="modal-content" style="width: fit-content">
<span class="close" style="margin-bottom: 10px;" data-dismiss="modal" onclick="resetReturnOption();">×</span>
<div class="select-style" style="width:500px; margin: auto;" align="center">
<div id="returnEqSelectDiv">
<?php
include('fetchReturnEq.php');
?>
</div>
<p> </p>
<select id="returnStudentSelect" style="width: 100%; margin-bottom: 10px">
<option value="">Student Name</option>
<?php
include('fetchReturnName.php');
?>
</select>
<p> </p>
<select id="returnSelect" style="width: 100%; margin-bottom: 10px">
<option value=""></option>
<?php
include('fetchReturnAllRq.php');
?>
</select>
<input id="return" name="request" type="submit" value="Return" style="width: 100%;" >
</div>
</div>
</div>
<!--Third party script for the 'Select' function-->
<script src="assets/js/select2.min.js"></script>
<!--Scripts only required by Admin Pages-->
<script src="assets/js/adminScript.js"></script>