-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContactUs.php
More file actions
23 lines (21 loc) · 997 Bytes
/
ContactUs.php
File metadata and controls
23 lines (21 loc) · 997 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
# Configurations
##############################################################################
## Script Configuration
$file = basename($_SERVER["SCRIPT_NAME"], ".php"); # Used for navagtion higlights.
include_once ("includes/header.php");
?>
<div class = "container">
<div class = "hero-unit">
<script type="text/javascript" src="js/webdev.js"></script>
<form class="well" name="contact" action="sendmail.php" method="post" onsubmit="return validateForm();">
<input type="text" class="span3" placeholder="First and Last Name" name="name" id="name"><br />
<input type="text" class="span3" placeholder="Email Address" name="email" id="email"><br />
<input type="text" class="span3" placeholder="Subject" name="subject" id="subject"><br />
<textarea name="content" id="content" rows ="5" class="span3" placeholder="Message" id="content"></textarea><br /><br />
<input type="submit" class="btn" valud="Submit" />
</form>
</div>
</div>
</body>
</html>