You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
2.2 KiB
55 lines
2.2 KiB
<?php
|
|
if ($cfg)
|
|
header("Content-Security-Policy: frame-ancestors ".$cfg->getAllowIframes().";");
|
|
?>
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
|
|
"http://www.w3.org/TR/html4/loose.dtd">
|
|
<html <?php
|
|
if (($lang = Internationalization::getCurrentLanguage())
|
|
&& ($info = Internationalization::getLanguageInfo($lang))
|
|
&& (@$info['direction'] == 'rtl'))
|
|
echo 'dir="rtl" class="rtl"';
|
|
|
|
// Dropped IE Support Warning
|
|
if (osTicket::is_ie())
|
|
$warning = __('osTicket no longer supports Internet Explorer.');
|
|
?>>
|
|
<head>
|
|
<title><?php echo $wizard['title']; ?></title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<link rel="stylesheet" href="css/wizard.css?cb6766e"/>
|
|
<link type="text/css" rel="stylesheet" href="<?php echo ROOT_PATH; ?>css/flags.css?cb6766e"/>
|
|
</head>
|
|
<body>
|
|
<div id="wizard">
|
|
<?php if ($warning) echo sprintf('<div class="warning_bar">%s</div>', $warning); ?>
|
|
<div id="header">
|
|
<img id="logo" src="./images/<?php echo $wizard['logo'] ?: 'logo.png'; ?>" alt="osTicket">
|
|
<div class="info"><?php echo $wizard['tagline']; ?></div>
|
|
<br/>
|
|
<ul class="links">
|
|
<li>
|
|
<?php
|
|
foreach($wizard['menu'] as $k=>$v)
|
|
echo sprintf('<a target="_blank" href="%s">%s</a> — ',$v,$k);
|
|
?>
|
|
<a target="_blank" href="https://osticket.com/contact-us"><?php echo __('Contact Us');?></a>
|
|
</li>
|
|
</ul>
|
|
<div class="flags">
|
|
<?php
|
|
if (($all_langs = Internationalization::availableLanguages())
|
|
&& (count($all_langs) > 1)
|
|
) {
|
|
foreach ($all_langs as $code=>$info) {
|
|
list($lang, $locale) = explode('_', $code);
|
|
?>
|
|
<a class="flag flag-<?php echo strtolower($locale ?: $info['flag'] ?: $lang); ?>"
|
|
href="?<?php echo urlencode($_GET['QUERY_STRING']); ?>&lang=<?php echo $code;
|
|
?>" title="<?php echo Internationalization::getLanguageDescription($code); ?>"> </a>
|
|
<?php }
|
|
} ?>
|
|
</div>
|
|
</div>
|
|
<div class="clear"></div>
|
|
<div id="content">
|