view.html 553 B

123456789101112131415161718192021
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Settings</title>
  6. </head>
  7. <body>
  8. <h3>IP version 4 properties</h3>
  9. <form method="POST" action="postform">
  10. <label>Ip address</label>
  11. <input type="text" name="ip address" /><br><br>
  12. <label>Mask</label>
  13. <input type="text" name="mask" /><br><br>
  14. <label>Gateway</label>
  15. <input type="text" name="gatway" /><br><br>
  16. <label>DNS</label>
  17. <input type="text" name="dns" /><br><br>
  18. <input type="submit" value="Send" />
  19. </form>
  20. </body>
  21. </html>