-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.php
More file actions
48 lines (35 loc) · 1.11 KB
/
contact.php
File metadata and controls
48 lines (35 loc) · 1.11 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
40
41
42
43
44
45
46
47
48
<?php
include_once 'header.php'
?>
<body>
<h1><strong>LET'S TALK.</strong></h1><br>
<p><h5>Get in touch via the form below, or by emailing
<a href="melvincabanes25@gmail.com">melvincabanes25@gmail.com</a></h5></p><br><br>
<article class="contact-form">
<div class="container">
<div class="row">
<div class="col-sm-3"></div>
<div class="col-sm-6">
<form class="form-group" action="contactform.php" method="post" >
<label for="name">Enter your name:</label>
<input class="form-control"
placeholder="Full name"
type="text"
name="name"><br>
<label for="email">Email:</label>
<input class="form-control"
placeholder="example@gmail.com"
type="text"
name="email"><br>
<label for="Mesage">Enter your message</label>
<textarea class="form-control"
placeholder="Write message"></textarea><br>
<button type="submit"
name="submit"
class="btn btn-primary btn-block">Submit</button>
</form>
<div class="col-sm-3"></div>
</div>
</div>
</article>
</body>