File size: 962 Bytes
8c5ab59
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Weed Detection</title>
    <link rel="stylesheet" href="/static/styles/app.css">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>
<body>
<div class="container">
    <h1>Weed Detection and Shapefile Creation</h1>
    <div class="file-upload">
        <input type="file" id="fileInput" accept=".tif">
        <label for="fileInput" class="file-label"><i class="fas fa-upload"></i> Choose a GeoTIFF file</label>
    </div>
    <button class="button" id="uploadButton">Upload and Detect</button>
    <div class="progress" id="uploadProgress">
        <div class="progress-bar" id="uploadProgressBar">0%</div>
    </div>
    <div id="message"></div>
</div>
<script src="/static/scripts/app.js"></script>
</body>
</html>