69 lines
1.6 KiB
HTML
69 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Image Upload Test</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
}
|
|
.upload-container {
|
|
border: 1px solid #ddd;
|
|
border-radius: 8px;
|
|
padding: 20px;
|
|
margin-top: 20px;
|
|
}
|
|
.file-input-wrapper {
|
|
margin: 20px 0;
|
|
}
|
|
.file-label {
|
|
display: inline-block;
|
|
padding: 10px 15px;
|
|
background-color: #f0f0f0;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
border: 1px solid #ccc;
|
|
}
|
|
.upload-btn {
|
|
padding: 10px 20px;
|
|
background-color: #4CAF50;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
}
|
|
.note {
|
|
margin-top: 20px;
|
|
font-size: 0.9em;
|
|
color: #666;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<h1>Image Upload Test</h1>
|
|
|
|
<div class="upload-container">
|
|
<!-- Pure HTML form with direct submission -->
|
|
<form
|
|
action="/v1/check/"
|
|
method="POST"
|
|
enctype="multipart/form-data"
|
|
>
|
|
|
|
<input type="submit" value="Upload Image" class="upload-btn">
|
|
|
|
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|
|
|
|
|