video.html 819 B

123456789101112131415
  1. <h4 class="dialog-title">Video</h4>
  2. <div id="video">
  3. <div class="dialog-section">
  4. <label class="btn btn-xxl btn-transparent btn-icon">
  5. <span class="icon icon-video-camera"></span>
  6. <input type="file" accept="video/*" multiple v-on="change:handle_video_file_upload($event)" id="video_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="video_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:search_videos(video_search_query) | key enter">
  12. </div>
  13. <button class="btn btn-transparent btn-block text-center" v-on="click:handle_insert_video_url(video_search_query)">Insert Video</button>
  14. </div>