-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
25 lines (24 loc) · 890 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Contact form</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div>
<h1>CONTACT</h1>
<h2>Oleksandr Kulinich</h2>
<form action="" method="post">
<input class="area" type="email" name="quest_email" placeholder="Your email" maxlength="32" required><br>
<textarea class="area" name="message" placeholder="message" row="8" required></textarea><br>
<input id="send_button" name="submit" type="submit" value="Send"><br>
</form>
</div>
<?php
// if(isset($_POST['submit'])) {
mail("[email protected]", "From contact form " . $_POST['quest_email'], $_POST['message']);
//}
?>
</body>
</html>