File size: 1,421 Bytes
b828b8f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>HANDETECT</title>
    <!-- Add your CSS file link here -->
    <link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
</head>
<body>
    <header>
        <h1>HANDETECT</h1>
        <p>An innovative AI-powered system that facilitates early detection and monitoring of movement disorders through handwriting assessment</p>
    </header>
    <main>
        <section class="upload-section">
            <div class="upload-box">
                <h2>Upload an Image</h2>
                    <input id='image-upload' type=file name=file style='visibility: hidden'>
                    <label for="image-upload" class="upload-label">
                      <hr>
                      <span>Drag & Drop an Image or Click to Upload</span>
                      <hr>
                  </label>
                <hr>
                <button id="upload-button">Upload</button>
            </div>
        </section>
        <section class="results-section">
            <h2>Results</h2>
            <div id="results-output">
                <p>{{ message }}</p>
            </div>
        </section>
    </main>
    <!-- Add your JavaScript file link here if needed -->
    <script src="{{ url_for('static', filename='script.js') }}"></script>
</body>
</html>