39 lines
946 B
PHP
39 lines
946 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>form</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<p> test </p>
|
|
<form action="post.php" method="post">
|
|
<p>
|
|
<label for="Lastname">LastName:</label>
|
|
<input type="text" id="LastName" name="Lastname" />
|
|
</p>
|
|
<p>
|
|
<label for="Firstname">FirstName:</label>
|
|
<input type="text" id="Firstname" name="Firstname" />
|
|
</p>
|
|
<p>
|
|
<label for="mail">Email:</label>
|
|
<input type="email" id="mail" name="mail" />
|
|
</p>
|
|
<p>
|
|
<label for="sub">Subject:</label>
|
|
<textarea id="sub" name="sub"></textarea>
|
|
</p>
|
|
<p>
|
|
<label for="path">Path:</label>
|
|
<textarea id="path" name="path"></textarea>
|
|
</p>
|
|
<p class="button">
|
|
<button type="submit">Send your message</button>
|
|
</p>
|
|
</form>
|
|
|
|
|
|
</body>
|
|
</html> |