This repository was archived by the owner on Oct 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact_us.php
More file actions
39 lines (35 loc) · 1.44 KB
/
Copy pathcontact_us.php
File metadata and controls
39 lines (35 loc) · 1.44 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
<?php
/****************************************************************************
* *
* File: contact_us.php *
* *
* Author: Branch Vincent *
* *
* Date: Sep 9, 2016 *
* *
* Purpose: This file sets the contact us page. *
* *
****************************************************************************/
// Initialize session
require_once('includes/session_management/init.php');
// Include page header
$page_title = 'Contact Us';
require_once('includes/page_parts/header.php');
?>
<div id="contactPage" class="page">
<h1 class="pageTitle">Contact Us</h1>
<p>
We highly value any questions or comments. To reach us, send us a message <a href="mailto:dukehalapps@gmail.com?subject=SHOW:">here</a>!
</p>
<p>
If you're experiencing any issues, we recommend using the latest version of Chrome.
</p>
<!-- <div id="contactForm">
<form id="contactFormInner" action="mailto:dukehalapps@gmail.com" method="post" enctype="multipart/form-data">
<strong>Subject:</strong> <br><input type="text" name="subject"><br><br>
<strong>Message:</strong> <br><textarea rows="4" cols="50" name="body"></textarea><br><br>
<input class="button" type="submit" value="Compose Message" style="color: black;">
</form>
</div> -->
</div>
<?php require_once('includes/page_parts/footer.php');?>