wizard.html 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <link rel="stylesheet" href="css/style.css" media="all">
  5. <link rel="stylesheet" href="css/page_wizard.css" media="all">
  6. <script>
  7. if (typeof module === 'object') {window.module = module; module = undefined; }
  8. </script>
  9. <title>LiveMe Pro Tools</title>
  10. <script type="text/javascript" src="js/jquery-3.2.1.min.js"></script>
  11. <script type="text/javascript" src="js/wizardwindow.js"></script>
  12. </head>
  13. <body>
  14. <header>
  15. <h1>First Run Wizard</h1>
  16. </header>
  17. <main>
  18. <div id="wait">
  19. <div class="message"></div>
  20. </div>
  21. <div id="stage1" class="stage">
  22. <h4>First Run Wizard</h4>
  23. <p>
  24. You will be asked some questions during this wizard to help set up things and to help in
  25. getting your data from the older supported apps.
  26. </p>
  27. <div class="buttons">
  28. <button onClick="goStage2()">Next &gt;</button>
  29. </div>
  30. </div>
  31. <div id="stage2" class="stage">
  32. <h4>Following Lists</h4>
  33. <p>
  34. You now have the ability to hide any accounts being listed in the followings windows if
  35. they don't have any replays at all.
  36. </p>
  37. <p>
  38. Would you like to enable this feature?
  39. </p>
  40. <div class="buttons">
  41. <button onClick="goStage3(1)">Yes</button>
  42. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  43. <button onClick="goStage3(0)">No</button>
  44. </div>
  45. </div>
  46. <div id="stage3" class="stage">
  47. <h4>Import from LiveMe Tools</h4>
  48. <p>
  49. Would you like to import the Favorites and Downloads history from LiveMe Tools?
  50. </p>
  51. <div class="buttons">
  52. <button onClick="goStage4(1)">Yes</button>
  53. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  54. <button onClick="goStage4(0)">No</button>
  55. </div>
  56. </div>
  57. <div id="stage4" class="stage">
  58. <h4>Import from LiveMe Toolkit</h4>
  59. <p>
  60. Would you like to import the Favorites, Downloads, and Viewed Profiles history from LiveMe Toolkit?
  61. </p>
  62. <div class="buttons">
  63. <button onClick="goStage5(1)">Yes</button>
  64. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  65. <button onClick="goStage5(0)">No</button>
  66. </div>
  67. </div>
  68. <div id="stage5" class="stage">
  69. <h4>Wizard Complete</h4>
  70. <p>
  71. Remember, you can change many more options in the Settings page by clicking the menu button in the upper-left corner.
  72. </p>
  73. <p>
  74. Don't forget to watch the main screen for updates and other useful tips and tricks.
  75. </p>
  76. <div class="buttons">
  77. <button onClick="goStage6()">Finish</button>
  78. </div>
  79. </div>
  80. <div id="stage6" class="stage">
  81. <h4>Processing Bookmarks</h4>
  82. <p>
  83. Your bookmarks are now being updated, please wait...
  84. </p>
  85. <div style="text-align: center; margin-top: 16px;">
  86. <div id="progressbar"><div></div></div>
  87. </div>
  88. </div>
  89. </main>
  90. </body>
  91. </html>