-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.php
executable file
·30 lines (29 loc) · 1.16 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
<?php
$section = "contact";
include 'inc/header.php'; ?>
<div class="container">
<div class="row">
<div class="col-lg-8">
<h1>Contact</h1>
<p>I’d love to hear from you! Complete the form to send me an email.</p>
<form method="POST" action="//formspree.io/[email protected]">
<div class="form-group">
<label for="name">Name</label>
<input class="form-control" type="text" name="name" id="name">
</div>
<div class="form-group">
<label for="email">Email</label>
<input class="form-control" type="email" name="_replyto" id="email">
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea class="form-control" name="message" id="message"></textarea>
</div>
<input class="btn btn-default" type="submit" value="Send">
</form>
</div>
</div>
</div>
<br>
<br>
<?php include 'inc/footer.php'; ?>