123456789101112131415161718192021 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>Settings</title>
- </head>
- <body>
- <h3>IP version 4 properties</h3>
- <form method="POST" action="postform">
- <label>Ip address</label>
- <input type="text" name="ip address" /><br><br>
- <label>Mask</label>
- <input type="text" name="mask" /><br><br>
- <label>Gateway</label>
- <input type="text" name="gatway" /><br><br>
- <label>DNS</label>
- <input type="text" name="dns" /><br><br>
- <input type="submit" value="Send" />
- </form>
- </body>
- </html>
|