generated from akshatvg/template-materialize
-
Notifications
You must be signed in to change notification settings - Fork 4
/
faculty.php
97 lines (87 loc) · 3.01 KB
/
faculty.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
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<?php
include("templates/metas.php");
?>
<!-- URLs -->
<meta name="url" content="https://exc-vtop.akshatvg.com/faculty">
<meta property="og:url" content="https://exc-vtop.akshatvg.com/faculty">
<link rel="canonical" href="https://exc-vtop.akshatvg.com/faculty">
<?php
include("templates/header.php");
?>
<?php
include("templates/nav.php");
?>
<!-- Main Content -->
<div class="container">
<!-- Heading -->
<div class="row mt-5">
<h5>Courses</h5>
</div>
<!-- DataTable -->
<div class="row">
<div id="man" class="col s12">
<div class="card">
<table id="2ccCourseTable" class="responsive-table highlight centered">
<thead>
<tr>
<th>TITLE </th>
<th>TYPE </th>
<th>DESCRIPTION </th>
<th>APPROVAL STATUS</th>
<th>VIEW</th>
<th>DELETE</th>
</tr>
</thead>
<tbody id="2ccCourses">
<!-- <?php foreach ($courses as $course) { ?>
<tr>
<td><?php echo htmlspecialchars($course['code']); ?></td>
<td><?php echo htmlspecialchars($course['title']); ?></td>
<td><?php echo htmlspecialchars($course['emp_name']); ?></td>
<td><?php echo htmlspecialchars($course['emp_school']); ?></td>
<td><?php echo htmlspecialchars($course['max_seats']); ?></td>
</tr>
<?php } ?> -->
</tbody>
</table>
</div>
</div>
</div>
<div class="row mt-5">
<h5>Add Achievements</h5>
</div>
<form>
<div class="row mx-4">
<div class="input-field col s6" style="width:250px;">
<input id="title" type="text" class="validate">
<label for="title">Title</label>
</div>
<div class="input-field col s12" style="width:250px;">
<select>
<option value="" disabled selected>Type</option>
<option value="1">Internship</option>
<option value="2">Hack-a-thon</option>
<option value="3">Competition</option>
</select>
</div>
</div>
<!-- <div class="row"> -->
<div class="input-field col s6 mx-4">
<input id="description" type="text" class="validate">
<label for="description">Description</label>
</div>
<div class="row mx-5">
Input file:
<input type="file" name="fileToUpload" id="fileToUpload" style="padding:20px">
<input type="submit" value="Add achievement" name="submit" class="btn blue">
<!-- </div> -->
</div>
</form>
</div>
<?php
include("templates/footer.php");
?>
</body>
</html>