-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
executable file
·50 lines (47 loc) · 1.9 KB
/
index.php
File metadata and controls
executable file
·50 lines (47 loc) · 1.9 KB
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
<?php $title = 'Home'; ?>
<?php $currentPage = 'index'; ?>
<?php include('header.php'); ?>
<?php include('navbar.php'); ?>
<div class="row main-top">
<!-- side control bar -->
<div class="col-md-4">
<div class="show wrapper" id="filter">
<div>
<h4 for="song-length">NSS personel:</h4>
</div>
<form ACTION="index.php" name="showAllStudents" METHOD="POST" align="center">
<div><input id="studentBtn" type="submit" name="student" value="All Students"></div>
</form>
<br>
<form ACTION="index.php" name="showAllInstructors" METHOD="POST" align="center">
<div><input id="instructorBtn" type="submit" name="instructor" value="All Instructors"></div>
</form>
<br>
<form ACTION="index.php" name="showType" METHOD="POST" align="center">
<p><label for="membertype">List:<select name="memberType">
<option value="">---</option>
<option value="students">Students</option>
<option value="instructors">Instructors</option>
</select>
<p><label for="loantype">In:<select name="cohort">
<option value="">---</option>
<option value="one">Cohort One</option>
<option value="two">Cohort Two</option>
<option value="three">Cohort Three</option>
<option value="four">Cohort Four</option>
<option value="zero">All Cohorts</option>
</select>
<div><input id="displayBtn" type="submit" name="display" value="Display"></div>
</form>
</div>
</div>
<!-- content -->
<div class="col-md-8">
<div class="show" id="content">
<?php include("allStudents.php"); ?>
<?php include("allInstructors.php"); ?>
<?php include("cohorts.php"); ?>
</div>
</div>
</div>
<?php include('footer.php'); ?>