index.html 4.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <!DOCTYPE html>
  2. <html lang="en" >
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>幸福空間 - 問卷調查</title>
  6. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
  7. <link rel="stylesheet" href="./style.css">
  8. <script src="https://unpkg.com/axios/dist/axios.min.js"></script>
  9. </head>
  10. <body>
  11. <img src="https://hhh.com.tw/assets/images/hhh-logo2.svg" width="145" height="40" alt="hhh-logo">
  12. <iframe name="dummyframe" id="dummyframe" style="display: none;"></iframe>
  13. <form action="http://127.0.0.1:8000/step_questions/submit" method="post" id="msform" target="dummyframe">
  14. <ul id="progressbar">
  15. <li class="active">基本資料</li>
  16. <li>建案資料</li>
  17. <li>裝修資料</li>
  18. </ul>
  19. <!-- fieldsets -->
  20. <fieldset>
  21. <h2 class="fs-title">基本資料</h2>
  22. <h3 class="fs-subtitle">This is step 1</h3>
  23. <select name="q1">
  24. <option value="Male">男</option>
  25. <option value="Female">女</option>
  26. </select>
  27. <input type="text" name='q2' value="" placeholder="手機號碼" /> <br/>
  28. <input type="text" name='q3' value="" placeholder="Email" />
  29. <input type="button" name="next" class="next action-button" value="Next" />
  30. </fieldset>
  31. <fieldset>
  32. <h2 class="fs-title">建案資料</h2>
  33. <h3 class="fs-subtitle">This is step 2</h3>
  34. <input type="text" name='q4' value="" placeholder="請問您所在哪個建案" />
  35. <div class="left_align">
  36. <p>建案類型?</p> <br/>
  37. <label><input type="checkbox" class="check_button" value="預售屋" name="q5" />預售屋</label>
  38. <label><input type="checkbox" class="check_button" value="新成屋" name="q5" />新成屋</label> <br/>
  39. </div>
  40. <input type="button" name="previous" class="previous action-button" value="Previous" />
  41. <input type="button" name="next" class="next action-button" value="Next" />
  42. </fieldset>
  43. <fieldset>
  44. <h2 class="fs-title">裝修資料</h2>
  45. <h3 class="fs-subtitle">This is step 3</h3>
  46. <div class="left_align">
  47. <p>喜歡的裝修風格?</p><br/>
  48. <label><input type="checkbox" value="簡單大方" name="q6" />簡單大方</label>
  49. <label><input type="checkbox" value="北歐風" name="q6" />北歐風</label>
  50. <label><input type="checkbox" value="日式風格" name="q6" />日式風格</label>
  51. <label><input type="checkbox" value="美式鄉村風" name="q6" />美式鄉村風</label>
  52. <label><input type="checkbox" value="" id='q6_checkbox' onclick="show_input_text('q6_checkbox', 'q6_input')" />其他</label>
  53. <input type="text" id="q6_input" name="q6" style="display:none" value="" />
  54. </div>
  55. <br/>
  56. <div class="left_align">
  57. <p>預計裝修預算(不含活動型傢俱/廚具/空調/窗簾/主燈)? </p><br/>
  58. <label><input type="checkbox" value="50萬以下" name="q7" />50萬以下</label>
  59. <label><input type="checkbox" value="50~100萬" name="q7" />50~100萬</label>
  60. <label><input type="checkbox" value="100~200萬" name="q7" />100~200萬</label>
  61. <label><input type="checkbox" value="200~300萬" name="q7" />200~300萬</label>
  62. <label><input type="checkbox" value="300~500萬" name="q7" />300~500萬</label>
  63. <label><input type="checkbox" value="500~800萬" name="q7" />500~800萬</label>
  64. <label><input type="checkbox" value="800萬以上" name="q7" />800萬以上</label>
  65. <label><input type="checkbox" value="" id='q7_checkbox' onclick="show_input_text('q7_checkbox', 'q7_input')"/>其他</label>
  66. <input type="text" id="q7_input" name="q7" style="display:none" value="" />
  67. <br/>
  68. </div>
  69. <div class="left_align">
  70. <p>喜歡的裝修風格?</p><br/>
  71. <label><input type="checkbox" value="20坪以下" name="q8" />20坪以下</label>
  72. <label><input type="checkbox" value="20~30坪" name="q8" />20~30坪</label>
  73. <label><input type="checkbox" value="30~40坪" name="q8" />30~40坪</label>
  74. <label><input type="checkbox" value="40~50坪" name="q8" />40~50坪</label>
  75. <label><input type="checkbox" value="50坪以上" name="q8" />50坪以上</label>
  76. </div>
  77. <br/>
  78. <input type="button" name="previous" class="previous action-button" value="Previous" />
  79. <input type="submit" name="submit" class="submit action-button" value="Submit" />
  80. </fieldset>
  81. </form>
  82. <div id="overlay">
  83. <div class="thankyou">
  84. <h3>感謝您的填寫</h3>
  85. </div>
  86. </div>
  87. <script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
  88. <script src='https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js'></script>
  89. <script src="./script.js"></script>
  90. </body>
  91. </html>