Spaces:
Runtime error
Runtime error
<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> | |