HTML
xxxxxxxxxx
1
<!--Section: Contact v.2-->
2
<section class="mb-4">
3
4
<!--Section heading-->
5
<h2 class="h1-responsive font-weight-bold text-center my-4">Contact us</h2>
6
<!--Section description-->
7
<p class="text-center w-responsive mx-auto mb-5">Do you have any questions? Please do not hesitate to contact us directly. Our team will come back to you within
8
a matter of hours to help you.</p>
9
10
<div class="row">
11
12
<!--Grid column-->
13
<div class="col-md-9 mb-md-0 mb-5">
14
<form id="contact-form" name="contact-form" action="mail.php" method="POST">
15
16
<!--Grid row-->
17
<div class="row">
18
19
<!--Grid column-->
20
<div class="col-md-6">
21
<div class="md-form mb-0">
22
<input type="text" id="name" name="name" class="form-control">
23
<label for="name" class="">Your name</label>
24
</div>
25
</div>
26
<!--Grid column-->
27
28
<!--Grid column-->
29
<div class="col-md-6">
30
<div class="md-form mb-0">
31
<input type="text" id="email" name="email" class="form-control">
32
<label for="email" class="">Your email</label>
33
</div>
34
</div>
35
<!--Grid column-->
36
37
</div>
38
<!--Grid row-->
39
40
<!--Grid row-->
41
<div class="row">
42
<div class="col-md-12">
43
<div class="md-form mb-0">
44
<input type="text" id="subject" name="subject" class="form-control">
45
<label for="subject" class="">Subject</label>
46
</div>
47
</div>
48
</div>
49
<!--Grid row-->
50
51
<!--Grid row-->
52
<div class="row">
53
54
<!--Grid column-->
55
<div class="col-md-12">
56
57
<div class="md-form">
58
<textarea type="text" id="message" name="message" rows="2" class="form-control md-textarea"></textarea>
59
<label for="message">Your message</label>
60
</div>
61
62
</div>
63
</div>
64
<!--Grid row-->
65
66
</form>
67
68
<div class="text-center text-md-left">
69
<a class="btn btn-primary" onclick="document.getElementById('contact-form').submit();">Send</a>
70
</div>
71
<div class="status"></div>
72
</div>
73
<!--Grid column-->
74
75
<!--Grid column-->
76
<div class="col-md-3 text-center">
77
<ul class="list-unstyled mb-0">
78
<li><i class="fas fa-map-marker-alt fa-2x"></i>
79
<p>San Francisco, CA 94126, USA</p>
80
</li>
81
82
<li><i class="fas fa-phone mt-4 fa-2x"></i>
83
<p>+ 01 234 567 89</p>
84
</li>
85
86
<li><i class="fas fa-envelope mt-4 fa-2x"></i>
87
<p>contact@mdbootstrap.com</p>
88
</li>
89
</ul>
90
</div>
91
<!--Grid column-->
92
93
</div>
94
95
</section>
96
<!--Section: Contact v.2-->
CSS
1
1
JS
xxxxxxxxxx
1
<?php
2
if(isset( $_POST['name']))
3
$name = $_POST['name'];
4
if(isset( $_POST['email']))
5
$email = $_POST['email'];
6
if(isset( $_POST['message']))
7
$message = $_POST['message'];
8
if(isset( $_POST['subject']))
9
$subject = $_POST['subject'];
10
11
$content="From: $name \n Email: $email \n Message: $message";
12
$recipient = "mac@alohacircleislandtour.com";
13
$mailheader = "From: $email \r\n";
14
mail($recipient, $subject, $content, $mailheader) or die("Error!");
15
echo "Email sent!";
16
?>
Console errors: 0