Advertisement
Guest User

Untitled

a guest
Jul 21st, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.78 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3.  
  4. <html>
  5. <head>
  6. <title>Welcome to Frenzy</title>
  7. <style></style>
  8. </head>
  9. <body bgcolor="#363434">
  10. <style>body, html {
  11. height: 100%;
  12. margin: 0;
  13. }
  14.  
  15. .bg {
  16. /* The image used */
  17. background-image: url("https://i.ytimg.com/vi/tmS4cB_bcxU/hqdefault.jpg");
  18.  
  19. /* Full height */
  20. height: 100%;
  21.  
  22. /* Center and scale the image nicely */
  23. background-position: center;
  24. background-repeat: no-repeat;
  25. background-size: cover;
  26. }
  27. </style>
  28. <h1 style="color:gold;text-align: center;font-size:300%;font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif">Frenzy</h1>
  29. <p id="demo" style="color:gold;text-align: center;font-size:150%;font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif">To Run Frenzy V2 Click the Button Below.</p>
  30. <div style="text-align: center;"></div>
  31. <button type="button" onclick="myfunction()">Run Frenzy</button>
  32. <form id="tableForm" action="getJson">
  33. <select class="sizePicker" data-style="btn-info" name="sizePicker">
  34. <option value="sz4">4</option>
  35. <option value="sz4.5">4.5</option>
  36. <option value="sz5">5</option>
  37. <option value="sz5.5">5.5</option>
  38. <option value="sz6">6</option>
  39. <option value="sz6.5">6.5</option>
  40. <option value="sz7">7</option>
  41. <option value="sz7.5">7.5</option>
  42. <option value="sz8">8</option>
  43. <option value="sz8.5">8.5</option>
  44. <option value="sz9">9</option>
  45. <option value="sz9.5">9.5</option>
  46. <option value="sz10">10</option>
  47. <option value="sz10.5">10.5</option>
  48. <option value="sz11">11</option>
  49. <option value="sz11.5">11.5</option>
  50. <option value="sz12">12</option>
  51. <option value="sz12.5">12.5</option>
  52. <option value="sz13">13</option>
  53. <option value="sz13.5">13.5</option>
  54. <option value="sz14">14</option>
  55. </select>
  56. </form>
  57. <script>
  58. function myfunction() {
  59. var options = {
  60. value: "start",
  61. }
  62. var xhr = new window.XMLHttpRequest()
  63. xhr.open('POST', '/start', true)
  64. xhr.setRequestHeader('Content-Type', 'application/json;charset=UTF-8')
  65. xhr.send(JSON.stringify(options));
  66. };
  67. </script>
  68.  
  69.  
  70.  
  71.  
  72.  
  73. </body>
  74. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement