-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.php
More file actions
43 lines (39 loc) · 1.34 KB
/
contact.php
File metadata and controls
43 lines (39 loc) · 1.34 KB
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
<?php
require_once 'templates/page_setup.php';
$title = "Contact";
$page_name = "contact";
include 'templates/header.php';
$current_tab = "ingredient_name";
$current_page = 1;
$num_per_page = 8;
include 'templates/jumbotron.php';
?>
<div class = "container-fluid">
<div class="row">
<div class="col-lg-12">
<h1 class="page-header">Contact Us</h1>
<p class="lead">Contact our experienced Customer Service team to provide a comment or ask a question about your local store</p>
<p><strong>Call 1-800-555-1234 or email ify@ingredientsforyou.com</strong><br>
Address: 123 Main Street, Fort Collins, CO 80521<br>
Fax Number: 970-232-0005
</p>
<p class="lead">Have a question or want further information?</p>
<p>Fill in the short form and we will get back to you as soon as possible.</p> <br>
</div>
<div class="row">
<div class="col-md-2"></div>
<div class="col-md-8">
<!-- BEGIN DOWNLOAD PANEL -->
<div class="panel panel-default well">
<?php
include 'templates/contact_form_submission.php';
?>
</div><!-- end panel-body -->
</div><!-- end panel -->
<!-- END DOWNLOAD PANEL -->
</div>
</div><!-- end col-md-8 -->
<div class="col-md-2"> </div>
</div>
</div>
<?php include 'templates/footer.php';?>