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
|
<?php require_once(__DIR__ . '/checkuser.php'); ?><!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <?php require(__DIR__ . '/inc/_head_meta.php'); ?> <?php require(__DIR__ . '/inc/_head_css.php'); ?> <?php require(__DIR__ . '/inc/_head_script.php'); ?> </head> <body> <?php require(__DIR__ . '/inc/_navbar.php'); ?> <div class="text-right"> <ul class="breadcrumb"> <li class="active">Support Information</li> </ul> </div> <div class="container-fluid pathways-container"> <?php if (isset($message) && !empty($message)): ?> <div class="alert alert-info"> <button type="button" class="close" data-dismiss="alert">×</button> <h5 class="alert-heading">Note:</h5> <p><?=$message?></p> </div> <?php endif; ?>
<div class="container" style="padding-top:30px"> <div class="row-fluid"> <div class="span12"> <div class="hero-unit"> <h3>Welcome to Pathways MIS</h3> <p> System support infomation:<br /> Office Hours: 9:00 A.M. to 6:00 P.M. (Mon - Fri)<br /> Tel: (852) 3189 9000<br /> Fax: (852) 3189 9099 <br /> <!-- E-mail: <a href="mailto:info@onecms.hk">info@onecms.hk</a> --> </p> </div> </div><!--/span--> </div><!--/row--> </div> <!-- /container --> <?php require(__DIR__ . '/inc/_footer.php'); ?>
</div> <!-- /container --> </body> </html>
|