This repository has been archived by the owner on Apr 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsupport.php
47 lines (44 loc) · 1.83 KB
/
support.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
$page = [
'id' => 'legal',
'title' => 'Get Support',
'seo_desc' => '',
'seo_tags' => '',
'cta_title' => 'Get Support',
'cta_desc' => 'Please Choose a Department Below'
];
require_once('structure/header.php');
?>
<div class="departments">
<section>
<h4><span>If you are <u>NOT</u> a client</span></h4>
<article>
<p><a href="https://billing.netherbox.com/submitticket.php?step=2&deptid=1">Pre-Sales Questions</a></p>
<a href="https://billing.netherbox.com/submitticket.php?step=2&deptid=1" class="bttn">Select</a>
</article>
<article>
<p><a href="https://billing.netherbox.com/submitticket.php?step=2&deptid=6">Sponsorships</a></p>
<a href="https://billing.netherbox.com/submitticket.php?step=2&deptid=6" class="bttn">Select</a>
</article>
</section>
<section>
<h4><span>If you are an <u>EXISTING</u> client</span></h4>
<article>
<p><a href="https://billing.netherbox.com/submitticket.php?step=2&deptid=2">General Support</a></p>
<a href="https://billing.netherbox.com/submitticket.php?step=2&deptid=2" class="bttn">Select</a>
</article>
<article>
<p><a href="https://billing.netherbox.com/submitticket.php?step=2&deptid=3">Billing</a></p>
<a href="https://billing.netherbox.com/submitticket.php?step=2&deptid=3" class="bttn">Select</a>
</article>
<article>
<p><a href="https://billing.netherbox.com/submitticket.php?step=2&deptid=4">Plugins</a></p>
<a href="https://billing.netherbox.com/submitticket.php?step=2&deptid=4" class="bttn">Select</a>
</article>
<article>
<p><a href="https://billing.netherbox.com/submitticket.php?step=2&deptid=5">Plugin Setup</a></p>
<a href="https://billing.netherbox.com/submitticket.php?step=2&deptid=5" class="bttn">Select</a>
</article>
</section>
</div>
<?php require_once('structure/footer.php'); ?>