File size: 1,080 Bytes
dbdd795 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Image Upload Form</title>
<script>
function showLoading() {
document.getElementById('loading').style.display = 'block';
document.getElementById('form').style.display = 'none';
}
</script>
</head>
<body>
<h1>Upload Images for Processing</h1>
<form id="form" action="http://13.51.197.183:8000/process-image/" enctype="multipart/form-data" method="post" onsubmit="showLoading()">
<label for="api_key">API Key:</label>
<input type="text" name="api_key" required><br><br>
<label for="source_file">Source Image:</label>
<input type="file" name="source_file" accept="image/*"><br><br>
<label for="target_files">Target Images:</label>
<input type="file" name="target_files" accept="image/*" multiple><br><br>
<input type="submit" value="Process">
</form>
<div id="loading" style="display:none;">
<p>Loading, please wait...</p>
</div>
</body>
</html>
|