This commit is contained in:
ssocha 2024-10-10 12:05:34 +00:00
parent 89a894432e
commit e5bc5c2abc
1 changed files with 8 additions and 9 deletions

View File

@ -3,35 +3,34 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<title>form</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<p> test </p>
<form action="/my-handling-form-page" method="post">
<form action="post.php" method="post">
<p>
<label for="Lastname">LastName:</label>
<input type="text" id="Lastname" name="user_name" />
<input type="text" id="LastName" name="Lastname" />
</p>
<p>
<label for="surname">FirstName:</label>
<input type="text" id="Firstname" name="user_name" />
<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="user_email" />
<input type="email" id="mail" name="mail" />
</p>
<p>
<label for="sub">Subject:</label>
<textarea id="sub" name="user_sub"></textarea>
<textarea id="sub" name="sub"></textarea>
</p>
<p>
<label for="path">Path:</label>
<textarea id="path" name="user_path"></textarea>
<textarea id="path" name="path"></textarea>
</p>
<p class="button">
<button type="submit">Send your message</button>
</p>
</form>