You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

74 lines
2.3KB

  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <meta content="text/html; charset=ISO-8859-1"
  5. http-equiv="content-type">
  6. <meta name = "viewport" content = "width = device-width, initial-scale = 1.0, maximum-scale = 1.0, user-scalable=0">
  7. <title>ESP32 Azure Demo</title>
  8. <style>
  9. body { background-color: #0067B3 ; font-family: Arial, Helvetica, Sans-Serif; Color: #FFFFFF; }
  10. .text{
  11. width: 100%;
  12. padding: 5px 10px;
  13. margin: 8px 0;
  14. display: inline-block;
  15. border: 2px solid #3498db;
  16. border-radius: 4px;
  17. box-sizing: border-box;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <center>
  23. <h1 style="color:#FFFFFF; font-family:verdana;font-family: verdana;
  24. padding-top: 25px;
  25. padding-bottom: 25px;
  26. font-size: 36px">ESP32 Azure Demo</h1>
  27. <h2 style="color:#FFFFFF;font-family: Verdana;
  28. font: caption;
  29. font-size: 27px;
  30. padding-top: 25px;
  31. padding-bottom: 10px;">Configure Static IPv4 Settings</h2>
  32. <FORM action="/" method="post">
  33. <P >
  34. <label style="font-family:Times New Roman">IPv4 Address</label><br>
  35. <input maxlength="30px" type='text' name="ipv4static" placeholder='ip Address' style="width: 400px; padding: 5px 10px ; margin: 8px 0; border : 2px solid #3498db; border-radius: 4px; box-sizing:border-box" required;><br>
  36. </P>
  37. <P>
  38. <label style="font-family:Times New Roman">Gateway</label><br>
  39. <input maxlength="30px" type = "text" name="gateway" placeholder = "gateway address" style="width: 400px; padding: 5px 10px ; margin: 8px 0; border : 2px solid #3498db; border-radius: 4px; box-sizing:border-box" required;><br>
  40. </P>
  41. <P >
  42. <label style="font-family:Times New Roman">Subnet Mask</label><br>
  43. <input maxlength="30px" type = "text" name="subnet" placeholder= "subnet mask" style="width: 400px; padding: 5px 10px ; margin: 8px 0; border : 2px solid #3498db; border-radius: 4px; box-sizing:border-box" required;><br>
  44. </P>
  45. <INPUT type="submit">
  46. <style>
  47. input[type="submit"]{
  48. background-color: #3498DB; /* Green */
  49. border: none;
  50. color: white;
  51. padding:15px 48px;
  52. text-align: center;
  53. text-decoration: none;
  54. display: inline-block;
  55. font-size: 16px;
  56. }
  57. </style>
  58. <INPUT type="reset">
  59. <style>
  60. input[type="reset"]{
  61. background-color: #3498DB; /* Green */
  62. border: none;
  63. color: white;
  64. padding: 15px 48px;
  65. text-align: center;
  66. text-decoration: none;
  67. display: inline-block;
  68. font-size: 16px;
  69. }
  70. </style>
  71. </FORM>
  72. </center>
  73. </body>