-
Notifications
You must be signed in to change notification settings - Fork 9
/
offline.php
41 lines (36 loc) · 1.22 KB
/
offline.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
<?php
/*********************************************************************
offline.php
Offline page...modify to fit your needs.
Peter Rotich <[email protected]>
Copyright (c) 2006-2010 osTicket
http://www.osticket.com
Released under the GNU General Public License WITHOUT ANY WARRANTY.
See LICENSE.TXT for details.
vim: expandtab sw=4 ts=4 sts=4:
$Id: $
**********************************************************************/
require_once('client.inc.php');
if($cfg && !$cfg->isHelpDeskOffline()) {
@header('Location: index.php'); //Redirect if the system is online.
include('index.php');
exit;
}
?>
<html>
<head>
<title>Support Ticket System</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" rightmargin="0" topmargin="0">
<table width="60%" cellpadding="5" cellspacing="0" border="0">
<tr<td>
<p>
<h3>Support Ticket System Offline</h3>
Thank you for your interest in contacting us.<br>
Our helpdesk is offline at the moment, please check back at a later time.
</p>
</td></tr>
</table>
</body>
</html>