image.html 811 B

123456789101112131415
  1. <h4 class="dialog-title">Image</h4>
  2. <div id="image">
  3. <div class="dialog-section">
  4. <label class="btn btn-xxl btn-transparent btn-icon">
  5. <span class="icon icon-picture-upload"></span>
  6. <input type="file" accept="*/*" multiple v-on:change="handle_image_file_upload($event)" id="image_file_upload">
  7. </label>
  8. <p>Click to Upload<br/> or drag file(s) anywhere.</p>
  9. </div>
  10. <div class="dialog-section no-p-b">
  11. <input type="text" v-model="image_search_query" class="input input-md input-white input-round text-center no-p no-b no-r input-block" placeholder="Search / Paste URL" v-on:keyup.enter="search_images(image_search_query)">
  12. </div>
  13. <button class="btn btn-transparent btn-block text-center" v-on:click="handle_insert_image_url(image_search_query)">Insert Image</button>
  14. </div>