Update static/index.html
Browse files- static/index.html +2 -2
static/index.html
CHANGED
@@ -14,9 +14,9 @@
|
|
14 |
<h1>Image Captioning</h1>
|
15 |
<form id="uploadForm" action="/uploadfile/" method="post" enctype="multipart/form-data">
|
16 |
<label for="image">Upload Image:</label><br>
|
17 |
-
<input type="file" id="
|
18 |
<label for="context">Additional Context:</label><br>
|
19 |
-
<textarea id="
|
20 |
<button type="submit">Submit</button>
|
21 |
</form>
|
22 |
|
|
|
14 |
<h1>Image Captioning</h1>
|
15 |
<form id="uploadForm" action="/uploadfile/" method="post" enctype="multipart/form-data">
|
16 |
<label for="image">Upload Image:</label><br>
|
17 |
+
<input type="file" id="file" name="file" accept="image/*"><br>
|
18 |
<label for="context">Additional Context:</label><br>
|
19 |
+
<textarea id="additional_context" name="additional_context" rows="4" cols="50"></textarea><br>
|
20 |
<button type="submit">Submit</button>
|
21 |
</form>
|
22 |
|