avatar-crop-form.hbs 862 B

123456789101112131415161718192021222324252627282930313233
  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 btn-busy" disabled="disabled">
  10. &nbsp;
  11. {{loader-compact}}
  12. </button>
  13. {{else}}
  14. <button type="button" class="btn btn-primary btn-block" {{action "crop"}}>
  15. {{#if isNested}}
  16. {{gettext "Set avatar"}}
  17. {{else}}
  18. {{gettext "Crop image"}}
  19. {{/if}}
  20. </button>
  21. {{/if}}
  22. <button type="button" class="btn btn-default btn-outlined btn-block {{if isBusy "disabled"}}" {{if isBusy "disabled"}} {{action "cancel"}}>
  23. {{gettext "Cancel"}}
  24. </button>
  25. </div>
  26. </div>
  27. {{else}}
  28. {{loader-compact}}
  29. {{/if}}