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
|
<?php require_once ('webadmin/basic_info.php');
$this_menu_info = get_menu_info(6); ?>
<!DOCTYPE html> <html dir="ltr" lang="en-US"> <head> <?php require_once("html_head.php") ?> </head>
<body>
<?php require_once("google_analysis.php"); ?>
<?php require_once("html_header.php") ?>
<section id="content" class="enrollment_form">
<?php require_once("banner.php") ?>
<div class="container"> <div style="padding-top: 20px;"> <div class="tc" style="padding-bottom: 20px; border-bottom: 1px solid #d4d4d4;">
<div class="head_title" style="padding-top: 20px;color: #10218B;"> THANK YOU FOR CONTACTING ALLIANCE </div> </div>
<p class="tc" style="padding-top: 10px;font-size: 15px; color: #4D4D4D;">Thank you for contacting Alliance. We will do our best to respond to you within the next 72 hours, probably sooner.<br>If you have any imediate questions that you would like to have answered, please call us at (852) 2331 8775.</p> </div> </div> </section>
<?php require_once("html_footer.php"); ?>
</body> </html>
|