uploadFileView.handlebars 574 B

1234567891011121314151617181920
  1. {{#if hasPreview}}
  2. <div class="row-fluid">
  3. <div class="span6">
  4. <p>
  5. {{#t "crop_instructions"}}To crop image, drag the selection and then click the "Save" button below.{{/t}}
  6. </p>
  7. </div>
  8. <div class="span6 text-center avatar-preview-wrapper">
  9. <div class="avatar-preview" />
  10. </div>
  11. </div>
  12. {{else}}
  13. <a class="select-photo-link" href="#">
  14. <i class="icon-image icon-select-photo"></i>
  15. {{#t "choose_a_picture"}}choose a picture{{/t}}
  16. </a>
  17. <input id="selected-photo" type="file" class="hidden" accept="image/*" />
  18. {{/if}}