File size: 765 Bytes
17d24fc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>File and Dropdown Selection Form</title>
</head>
<body>
<h1>Upload a File and Select an Option</h1>
<form action="/output_iqa" method="post" enctype="multipart/form-data">
    <label for="file">Upload file:</label>
    <input type="file" id="file" name="file">
    <br><br>

  <label for="choice">Criteria Prompt:</label>
  <select name="choice" id="choice">
    <option value="quality">Quality</option>
    <option value="sharpness">Shaprness</option>
    <option value="noisiness">Noisiness</option>
  </select>
  <br><br>
  <button type="submit">Submit</button>
</form>
</body>
</html>