123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- define('IN_SYS', true);
- require_once ("core.php");
- ?>
- <!DOCTYPE html>
- <html lang="<?php echo $current_language; ?>">
- <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="bs-docs-header">
- <div class="container">
- <h1><?php echo $LANG['help']; ?></h1>
- <p><?php echo $LANG['help']; ?></p>
- </div>
- </div>
- <div class="container">
- <div class="row">
- <section class="section-wrap">
- <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>
- </section>
- </div>
- </div>
- <?php include ("footer.php"); ?>
- </body>
- </html>
|