insert-bbb.hbs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <DModal @closeModal={{@closeModal}}>
  2. <:body @title="bbb.modal.title" @class="insert-bbb">
  3. <div class="insert-bbb-form">
  4. <div class="insert-bbb-input">
  5. <label>{{i18n "bbb.meetingID"}}</label>
  6. <TextField @value={{meetingID}} />
  7. </div>
  8. <div class="insert-bbb-input bbb-button-text">
  9. <label>{{i18n "bbb.button_text"}}</label>
  10. <TextField @value={{buttonText}} @placeholderKey="bbb.launch" />
  11. </div>
  12. <div class="insert-bbb-input">
  13. <label class="checkbox-label">
  14. {{input type="checkbox" checked=mobileIframe}}
  15. {{i18n "bbb.modal.mobile_iframe"}}
  16. </label>
  17. </div>
  18. <div class="insert-bbb-input">
  19. <label class="checkbox-label">
  20. {{input type="checkbox" checked=desktopIframe}}
  21. {{i18n "bbb.modal.desktop_iframe"}}
  22. </label>
  23. </div>
  24. </div>
  25. </:body>
  26. <:footer>
  27. <DButton
  28. @class="btn-primary"
  29. @disabled={{insertDisabled}}
  30. @label="bbb.modal.insert"
  31. @action={{action "insert"}}
  32. />
  33. <DButton
  34. @class="btn-danger"
  35. @label="bbb.modal.cancel"
  36. @action={{action "cancel"}}
  37. />
  38. </:footer>
  39. </DModal>