2016-12-30 06:58:52 +00:00
|
|
|
<?php
|
2017-09-08 07:01:08 +00:00
|
|
|
define('IN_SYS', true);
|
|
|
|
require_once ("core.php");
|
2016-12-30 06:58:52 +00:00
|
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
2018-12-11 09:57:47 +00:00
|
|
|
<html lang="<?php echo $current_lang; ?>">
|
2016-12-30 06:58:52 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2017-09-08 07:01:08 +00:00
|
|
|
<title><?=$title?> - <?php echo $LANG['contact_us']; ?></title>
|
2017-09-09 17:38:44 +00:00
|
|
|
<?php include ("headmate.php"); ?>
|
2016-12-30 06:58:52 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2018-12-11 09:57:47 +00:00
|
|
|
|
2016-12-30 06:58:52 +00:00
|
|
|
<?php include ("nav.php"); ?>
|
2018-12-11 09:57:47 +00:00
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
<div class="page-header">
|
2018-11-16 07:39:39 +00:00
|
|
|
<h1><?php echo $LANG['contact_us']; ?></h1>
|
2017-09-09 17:38:44 +00:00
|
|
|
</div>
|
2018-12-11 09:57:47 +00:00
|
|
|
</div>
|
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm-12 col-md-12">
|
|
|
|
<h2>Contact</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="http://byet.net" target="_blank">Knowledge Base</a></p>
|
|
|
|
</div>
|
|
|
|
<div class="col-sm-12 col-md-12">
|
|
|
|
<h2><?php echo $LANG['address']; ?></h2>
|
|
|
|
<p>Shanghai China.</p>
|
|
|
|
</div>
|
|
|
|
<div class="col-sm-12 col-md-12">
|
|
|
|
<h2>Others</h2>
|
|
|
|
<p class="alert alert-warning"><i class="glyphicon glyphicon-info-sign"></i> Crogram Inc.</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2016-12-30 06:58:52 +00:00
|
|
|
<?php include ("footer.php"); ?>
|
|
|
|
</body>
|
|
|
|
</html>
|