-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstaff.php
68 lines (64 loc) · 2.36 KB
/
staff.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Visit us | Cantor College</title>
<link rel="stylesheet" href="assets/css/style.css" type="text/css">
<script src="assets/js/navbar.js" defer></script>
<link rel="icon" type="image/png" href="assets/images/logo-trans-cropped.png">
</head>
<body>
<?php
// Menu & Banner
include("includes/header.php");
?>
<div class="central-cont">
<div class="center">
<h1>Information for staff:</h1>
</div>
<p>
<b>News:</b> <br>
Cantor College recently hosted the Software Engineering student of the year awards. Short-
listed candidates from around the country attended the one day event.
</p>
<p>
<b>Academic Registry:</b><br>
For academic regulations, assessment, awards, student records and course validation.
</p>
<p>
<b>Catering Services:</b><br>
Contact the Catering Services regarding on and off-site catering.
</p>
<p>
<b>Financial services:</b><br>
The financial team based on the 2nd Floor are responsible for all areas of student finance as
well as College budgeting.
</p>
<p>
<b>Information Systems Services:</b><br>
The ISS team delivers the College’s computing facilities including all hardware and software.
They also run the staff helpdesk.
</p>
<p>
<b>Marketing services:</b><br>
The Marketing Team will help promote events and new courses. They will help with press
release preparation.
</p>
<p>
<b>Personnel Services</b><br>
All staff pay and conditions enquiries should be directed to the Personnel Services team on
the 3rd floor.
</p>
<p>
<b>Facilities</b><br>
The facilities are responsible for the general care and maintenance of the College. All
enquiries via the main helpdesk.
</p>
</div>
<?php
// Footer
include("includes/footer.php");
?>
</body>
</html>