Diff of /index.html [000000] .. [9e019c]

Switch to unified view

a b/index.html
1
{% extends "base.html" %} {% block content %}
2
3
<h2>ECG Arrhythmia Classifier</h2>
4
5
<div>
6
    <form id="upload-file" method="post" enctype="multipart/form-data">
7
        <label for="imageUpload" class="upload-label">
8
            Choose...
9
        </label>
10
        <input type="file" name="file" id="imageUpload" accept=".csv">
11
    </form>
12
13
    <div class="image-section" style="display:none;">
14
        <div>
15
            <div>
16
            </div>
17
        </div>
18
        <div>
19
            <button type="button" class="btn btn-primary btn-lg " id="btn-predict">Predict!</button>
20
        </div>
21
    </div>
22
23
    <div class="loader" style="display:none;"></div>
24
25
    <h3 id="result">
26
        <span> </span>
27
    </h3>
28
29
</div>
30
31
{% endblock %}