| 12345678910111213141516171819 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Formular</title>
- </head>
- <body>
- <form action="/" method="post">
- <label for="name">Name:</label>
- <input type="text" id="name" name="name"><br><br>
- <label for="email">Email:</label>
- <input type="email" id="email" name="email"><br><br>
- <input type="submit" value="Submit">
- </form>
- </body>
- </html>
|