ssocha/p10/index.php

39 lines
946 B
PHP
Raw Permalink Normal View History

2024-10-10 11:32:22 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2024-10-10 12:05:34 +00:00
<title>form</title>
2024-10-10 11:32:22 +00:00
<link rel="stylesheet" href="style.css">
</head>
<body>
<p> test </p>
2024-10-10 12:05:34 +00:00
<form action="post.php" method="post">
2024-10-10 11:32:22 +00:00
<p>
<label for="Lastname">LastName:</label>
2024-10-10 12:05:34 +00:00
<input type="text" id="LastName" name="Lastname" />
2024-10-10 11:32:22 +00:00
</p>
<p>
2024-10-10 12:05:34 +00:00
<label for="Firstname">FirstName:</label>
<input type="text" id="Firstname" name="Firstname" />
2024-10-10 11:32:22 +00:00
</p>
<p>
<label for="mail">Email:</label>
2024-10-10 12:05:34 +00:00
<input type="email" id="mail" name="mail" />
2024-10-10 11:32:22 +00:00
</p>
<p>
<label for="sub">Subject:</label>
2024-10-10 12:05:34 +00:00
<textarea id="sub" name="sub"></textarea>
2024-10-10 11:32:22 +00:00
</p>
<p>
<label for="path">Path:</label>
2024-10-10 12:05:34 +00:00
<textarea id="path" name="path"></textarea>
2024-10-10 11:32:22 +00:00
</p>
2024-10-10 11:37:16 +00:00
<p class="button">
<button type="submit">Send your message</button>
</p>
2024-10-10 11:32:22 +00:00
</form>
</body>
</html>