-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.php
More file actions
34 lines (33 loc) · 1.25 KB
/
contact.php
File metadata and controls
34 lines (33 loc) · 1.25 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
<?php
include 'include/db.php';
include 'include/functies/functies.php';
include 'include/bookid.php';
?>
<!doctype html>
<html>
<head>
<?php require_once 'include/meta.php';?>
</head>
<body>
<div class="container">
<?php require_once 'include/header.php';?>
<main>
<div class="contact">
<h1>Contact</h1>
<p>Do you have something you want to share with me? A question you want to ask? Did you love my book? Hate it? Don't be shy. I want to hear from you! Use the contact form below to send me a message. I read all messages personally and try to respond to all of them.</p>
<form method="post">
<label for="name">Name:</label>
<input type="text" name="name" id="name" placeholder="Enter name" required>
<label for="mail">Email:</label>
<input type="email" name="mail" id="mail" placeholder="Enter email" required>
<input type="hidden" name="email" id="email">
<label for="message">Comment:</label>
<textarea rows="5" placeholder="Enter comment" name="message" id="message"></textarea>
<input type="submit" id="send" name="send" value="Send">
</form>
</div>
</div>
</main>
<?php require_once 'include/footer.php';?>
</body>
</html>