-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.php
61 lines (54 loc) · 2.42 KB
/
contact.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
$pageTitle = "Contact Us";
$pageDesc = "Mark Landeryou Artisan is an web designer/developer, graphic designer and digital artist, based out of Sarnia Ontario serving Sarnia and London areas";
$pageKeywords = "Mark Landeryou Artisan Sarnia London Canada Graphic Designer Web Designer Web developer Digital Artist";
include "includes/header.php";
?>
<div class="grid-x grid-margin-x content-wrap">
<div class="large-12 cell">
<h2>Contact</h2>
<!-- <p>Phone: <i class="fa fa-phone" aria-hidden="true"></i>
<a href="tel:516145272">(519)614-5272</a> Text Message (SMS):<a href="sms://+15196145272">Send SMS</a></p> -->
<section>
<div class="row">
<div class="small-12 medium-6 large-6 columns">
<h2 class="hide">Contact Form</h2>
<form action="send_email_form.php" method="post" data-abide novalidate>
<div data-abide-error class="alert callout" style="display: none;">
<p><i class="fi-alert"></i> There are some errors in your form.</p>
</div>
<div class="name-field">
<label>Your name <small>required</small>
<input type="text" name="name" required pattern="[a-zA-Z]+" placeholder="Please type your name here.">
</label>
</div>
<div class="email-field">
<label>Email <small>required</small>
<input type="email" name="email" required placeholder="Please enter in your email address here.">
</label>
<span class="form-error">
Email address is required.
</span>
</div>
<div class="phone-field">
<label>Phone Number
<input type="tel" name="phone" placeholder="Please type your phone number here.">
</label>
</div>
<div class="comments-field">
<label>Comments <small>required</small>
<textarea name="comments" placeholder="None" required></textarea>
</label>
</div>
<button class="button" type="submit" value="Submit">Submit</button>
<button class="alert button" type="reset" value="Reset">Reset</button>
</form>
</div>
</div>
</section>
</div>
</div>
<?php
include "includes/socialmedia.php";
include "includes/footer.php";
?>