-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcontact.php
42 lines (37 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>FF2EBOOK :: Contact</title>
<?php include("html/header.html") ?>
</head>
<body>
<div class="container-fluid">
<?php include("html/menu.html") ?>
<!-- Input -->
<div class="row">
<div class="col-md-4 col-md-offset-4">
<div id="contact">
You can contact me via <a href="mailto: contact@ff2ebook.com" class="text-highlight bold">contact@ff2ebook.com</a> or with the form below.
</div>
<form class="form-group top-spacing" method="post" action="sendEmail.php" id="contact-form">
<div>
<label for="name" class="form-label align-left default-text">Name:</label>
<input type="text" name="name" class="form-control" id="name" placeholder="John Doe" required>
</div>
<div>
<label for="email-address" class="form-label align-left default-text">Email address:</label>
<input type="email" name="email-address" class="form-control" id="email-address" placeholder="name@example.com" required>
</div>
<div>
<label for="email-body" class="form-label default-text">Text to send:</label>
<textarea class="form-control" name="email-body" id="email-body" rows="10" required></textarea>
</div>
<button class="btn btn-success float-left" type="submit">Send</button>
</form>
</div>
</div>
</div>
</body>
</html>