-
Notifications
You must be signed in to change notification settings - Fork 4
/
contact.php
33 lines (31 loc) · 1.28 KB
/
contact.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
<?php
define('IN_SYS', true);
require_once ("core.php");
$title = $title . ' - ' . I18N('contact_us');
?>
<?php include ("include/header.php"); ?>
<div class="container">
<div class="page-header">
<h1><?php echo I18N('contact_us'); ?></h1>
</div>
</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 I18N('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>
<?php include ("include/footer.php"); ?>