index_unminified.html 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <html>
  2. <style>
  3. html, body {
  4. margin: 0;
  5. padding: 0;
  6. font-family: montserrat;
  7. background-color: #9a61b2;
  8. color: white;
  9. text-align: center;
  10. }
  11. input {
  12. background: #813a9d;
  13. font-family: montserrat;
  14. color: white;
  15. border: none;
  16. text-align: center;
  17. font-size: 30px;
  18. margin: 5px;
  19. padding: 5px;
  20. width: 50%;
  21. -webkit-appearance: none;
  22. }
  23. input[type=submit] {
  24. height: 100px;
  25. font-size: 50px;
  26. }
  27. h1 {
  28. background-color: #813a9d;
  29. width: 100%;
  30. height: 70px;
  31. font-size: 50px;
  32. }
  33. .n {
  34. background: white;
  35. color: #813a9d;
  36. }
  37. .y {
  38. text-transform: uppercase;
  39. }
  40. </style>
  41. <body>
  42. <h1>Yo Button</h1>
  43. <input type="text" value="network: S_" readonly><br>
  44. <input type="text" value="status: T_" readonly><br>
  45. <h2>Send Yos to:</h2>
  46. <input type="text" value="R_" readonly><br>
  47. <h2>New settings:</h2>
  48. <form method="post">
  49. <input class="n" value="S_" type="text" name="s" autocorrect="off" autocapitalize="none" placeholder="WiFi network"><br>
  50. <input class="n" type="text" name="p" autocorrect="off" autocapitalize="none" placeholder="WiFi password"><br>
  51. <input class="n y" value="R_" type="text" name="r" placeholder="Yo recipient"><br><br>
  52. <input type="submit" value="Update" name="s">
  53. </form>
  54. </body>
  55. </html>