index.html 496 B

12345678910111213141516171819
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Formular</title>
  7. </head>
  8. <body>
  9. <form action="/" method="post">
  10. <label for="name">Name:</label>
  11. <input type="text" id="name" name="name"><br><br>
  12. <label for="email">Email:</label>
  13. <input type="email" id="email" name="email"><br><br>
  14. <input type="submit" value="Submit">
  15. </form>
  16. </body>
  17. </html>