avatar-crop-form.hbs 860 B

1234567891011121314151617181920212223242526272829303132
  1. {{#if isLoaded}}
  2. <div class="image-cropper">
  3. <div class="cropit-image-preview"></div>
  4. <input type="range" class="cropit-image-zoom-input" />
  5. </div>
  6. <div class="row">
  7. <div class="col-md-6 col-md-offset-3">
  8. {{#if isBusy}}
  9. <button type="button" class="btn btn-primary btn-block disabled" disabled="disabled">
  10. {{gettext "Cropping..."}}
  11. </button>
  12. {{else}}
  13. <button type="button" class="btn btn-primary btn-block" {{action "crop"}}>
  14. {{#if isNested}}
  15. {{gettext "Set avatar"}}
  16. {{else}}
  17. {{gettext "Crop image"}}
  18. {{/if}}
  19. </button>
  20. {{/if}}
  21. <button type="button" class="btn btn-default btn-outlined btn-block {{if isBusy "disabled"}}" {{if isBusy "disabled"}} {{action "cancel"}}>
  22. {{gettext "Cancel"}}
  23. </button>
  24. </div>
  25. </div>
  26. {{else}}
  27. <div class="loader"></div>
  28. {{/if}}