walkthrough.html 5.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <!--
  2. Any elements with .togetherjs-walkthrough-firsttime will only be
  3. displayed on during the first-time experience. Any elements with
  4. .togetherjs-walkthrough-not-firsttime will only be displayed when
  5. the walkthrough is accessed through the Help menu.
  6. Note you *cannot* use <section class="togetherjs-walkthrough-slide
  7. togetherjs-walkthrough-firsttime">: the number of sections must be the
  8. same regardless.
  9. -->
  10. <div id="togetherjs-walkthrough" class="togetherjs-modal togetherjs-modal-wide">
  11. <header>{{ gettext( "You're using TOOL_NAME!" ) }}<button class="togetherjs-close"></button></header>
  12. <div id="togetherjs-walkthrough-previous"></div>
  13. <div id="togetherjs-walkthrough-next"></div>
  14. <section class="togetherjs-walkthrough-slide">
  15. <p class="togetherjs-walkthrough-main-image"><img src="http://localhost:8080/togetherjs/images/walkthrough-images-intro.png"></p>
  16. <p>{{ gettext( "TOOL_NAME is a service for your website that makes it easy to collaborate in real-time on SITE_NAME") }} </p>
  17. </section>
  18. <section class="togetherjs-walkthrough-slide">
  19. <div class="togetherjs-walkthrough-firsttime">
  20. <div class="togetherjs-walkthrough-main-image">
  21. <div class="togetherjs-walkthrough-avatar-section">
  22. <div class="togetherjs-avatar-preview togetherjs-person togetherjs-person-self"></div>
  23. <div class="togetherjs-avatar-upload-input"><input type="file" class="togetherjs-upload-avatar"></div>
  24. </div>
  25. <input class="togetherjs-self-name" type="text" placeholder="{{ gettext( "Enter your name" ) }}">
  26. <div class="togetherjs-swatch togetherjs-person-bgcolor-self"></div>
  27. <div class="togetherjs-save-settings">
  28. <button class="togetherjs-avatar-save togetherjs-primary">
  29. <span id="togetherjs-avatar-when-unsaved">""{{ gettext("Save") }}""</span>
  30. <span id="togetherjs-avatar-when-saved" style="display: none">{{ gettext("Saved!") }}</span>
  31. </button>
  32. </div>
  33. </div>
  34. <p>{{ gettext( "Set up your avatar, name and user color above. If you'd like to update it later, you can click your Profile button.") }}</p>
  35. </div>
  36. <div class="togetherjs-walkthrough-not-firsttime">
  37. <p class="togetherjs-walkthrough-main-image"><img src="http://localhost:8080/togetherjs/images/walkthrough-images-profile.png"></p>
  38. <p>{{ gettext( "Change your avatar, name and user color using the Profile button." ) }}</p>
  39. </div>
  40. </section>
  41. <section class="togetherjs-walkthrough-slide">
  42. <p class="togetherjs-walkthrough-main-image togetherjs-ifnot-creator"><img src="http://localhost:8080/togetherjs/images/walkthrough-images-invite.png">
  43. </p>
  44. <p class="togetherjs-ifnot-creator">{{ gettext( "You can invite more friends to the session by sending the invite link in the TOOL_NAME dock." ) }}</p>
  45. <p class="togetherjs-walkthrough-main-image togetherjs-if-creator">
  46. <span class="togetherjs-walkthrough-sendlink">
  47. {{ gettext( "Copy and paste this link into IM or email to invite friends." ) }}
  48. </span>
  49. <input type="text" class="togetherjs-share-link">
  50. </p>
  51. <p class="togetherjs-if-creator">{{ gettext("Send the above link to a friend so they can join your session! You can find this invite link on the TOOL_NAME dock as well.") }}</p>
  52. </section>
  53. <section class="togetherjs-walkthrough-slide">
  54. <p class="togetherjs-walkthrough-main-image"><img src="http://localhost:8080/togetherjs/images/walkthrough-images-participant.png"></p>
  55. <p>{{ gettext( "Friends who join your TOOL_NAME session will appear here. You can click their avatars to see more." ) }}</p>
  56. </section>
  57. <section class="togetherjs-walkthrough-slide">
  58. <p class="togetherjs-walkthrough-main-image"><img src="http://localhost:8080/togetherjs/images/walkthrough-images-chat.png"></p>
  59. <p>{{ gettext( "When your friends join you in your TOOL_NAME session, you can chat with them here!" ) }}</p>
  60. </section>
  61. <section class="togetherjs-walkthrough-slide">
  62. <p class="togetherjs-walkthrough-main-image"><img src="http://localhost:8080/togetherjs/images/walkthrough-images-rtc.png"></p>
  63. <p>{{ gettext( "If your browser supports it, click the microphone icon to begin an audio chat. Learn more about this experimental feature <a href=\"https://github.com/mozilla/togetherjs/wiki/About-Audio-Chat-and-WebRTC\" target=\"_blank\">here</a>." ) }}</p>
  64. </section>
  65. <section class="togetherjs-walkthrough-slide">
  66. <p class="togetherjs-walkthrough-main-image"><img src="http://localhost:8080/togetherjs/images/walkthrough-images-logo.png"></p>
  67. <p>{{ gettext( "Alright, you're ready to use TOOL_NAME. Now start collaborating on SITE_NAME!" ) }}</p>
  68. </section>
  69. <div style="display: none">
  70. <!-- There is one of these created for each slide: -->
  71. <span id="togetherjs-template-walkthrough-slide-progress" class="togetherjs-walkthrough-slide-progress">&#9679;</span>
  72. </div>
  73. <section id="togetherjs-walkthrough-progress">
  74. </section>
  75. <section class="togetherjs-buttons">
  76. <button class="togetherjs-primary togetherjs-dismiss">{{ gettext( "I'm ready!" )}}</button>
  77. </section>
  78. </div><!-- /.togetherjs-modal -->