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