-
Notifications
You must be signed in to change notification settings - Fork 0
/
sectionAdd.php
84 lines (66 loc) · 3.22 KB
/
sectionAdd.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?php include'header.php' ;?>
<?php include'connection.php' ;?>
<div class="contanier">
<div class="card card-register mx-auto mt-5">
<div class="card-header""> <h2 style="text-shadow: 0px 1px 5px white;">Add new Record</h2> </div>
<div class="card-body" style="background-color: #009999;">
<form role="form" method="post" action="section_trans.php?action=add">
<div class="card-body">
<div class="form-group">
<input class="form-control" placeholder="Section ID" name="SECTION_ID">
</div>
<div class="form-group">
<input class="form-control" placeholder="Section Name" name="NAME">
</div>
<div class="form-group">
<input class="form-control" placeholder="Course ID" name="COURSE_ID">
</div>
<div class="form-group">
<input class="form-control" placeholder="Schedule ID" name="SCHEDULE ID">
</div>
<div class="form-group">
<input class="form-control" placeholder="Instruction ID" name="INSTRUCTION_ID">
</div>
<button type="submit" class="btn btn-default">Save Record</button>
<button type="reset" class="btn btn-default">Clear </button>
</form>
</div>
</div>
</div>
<!-- /.container-fluid -->
<!-- Sticky Footer -->
<footer class="sticky-footer">
<div class="container my-auto">
<div class="copyright text-center my-auto">
<span>Copyright ©</span>
</div>
</div>
</footer>
</div>
<!-- /.content-wrapper -->
</div>
<!-- /#wrapper -->
<!-- Scroll to Top Button-->
<a class="scroll-to-top rounded" href="#page-top">
<i class="fas fa-angle-up"></i>
</a>
<!-- Logout Modal-->
<div class="modal fade" id="logoutModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Ready to Leave?</h5>
<button class="close" type="button" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">Select "Logout" below if you are ready to end your current session.</div>
<div class="modal-footer">
<button class="btn btn-secondary" type="button" data-dismiss="modal">Cancel</button>
<a class="btn btn-primary" href="login.php">Logout</a>
</div>
</div>
</div>
</div>
</body>
</html>