aboutsummaryrefslogtreecommitdiff
path: root/qc_app/templates/upload_progress_indicator.html
blob: 9855c2d4162fe12483a680f0279f2830280aebac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{%macro upload_progress_indicator()%}
<div id="upload-progress-indicator" class="hidden">
  <h3>Uploading file</h3>
  <p id="progress-filename">the-file</p>
  <progress id="progress-bar" value="0" max="100">
    0
  </progress>
  <p id="progress-text">Uploading 0%</p>
  <p id="progress-extra-text">Processing</p>
  <form id="frm-cancel-upload" style="border-style: none;">
    <button id="btn-cancel-upload" type="submit" class="btn btn-danger">
      Cancel
    </button>
  </form>
</div>
{%endmacro%}