c5161c8c65
2.add: Add Korean Language
34 lines
No EOL
1.2 KiB
PHP
34 lines
No EOL
1.2 KiB
PHP
<?php
|
|
define('IN_SYS', true);
|
|
require_once ("core.php");
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="<?php echo $current_lang; ?>">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title><?=$title?> - <?php echo $LANG['contact_us']; ?></title>
|
|
<?php include ("headmate.php"); ?>
|
|
</head>
|
|
<body>
|
|
|
|
<?php include ("nav.php"); ?>
|
|
<div class="container">
|
|
<div class="page-header">
|
|
<h1><?php echo $LANG['help']; ?></h1>
|
|
</div>
|
|
</div>
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-sm-12 col-md-12">
|
|
<h2><?php echo $LANG['help']; ?></h2>
|
|
<p>If you have any problems or have the need to contact us to ask a question,
|
|
you can use the <span>integrated support system</span> in your control panel to create a support ticket.</p>
|
|
<p>We will reply to your question as soon as possible.</p>
|
|
<p>For technical support please look at the <a href="mailto:doudoudzj@sina.com" target="_blank">Email Support</a></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php include ("footer.php"); ?>
|
|
</body>
|
|
</html>
|