File size: 924 Bytes
a839f47
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
30
<!doctype html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <link rel="icon" type="image/svg+xml" href="/vite.svg" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Replicate UI</title>
  </head>
  <body>
    <div>
      <h1>Replicate UI</h1>
      <div class="card">
        <input type="file" id="imageFileInput" accept="image/*"><br><br>

        <label for="imageUrlInput">Image URL:</label>
        <input type="text" id="imageUrlInput" placeholder="Enter image URL"><br><br>

        <label for="promptInput">Prompt:</label>
        <input type="text" id="promptInput" placeholder="Enter prompt"><br><br>

        <button id="submitButton" type="button">Submit</button>
      </div>
      <p id="qwenOutput" class="read-the-docs">
        [Output will be displayed here]
      </p>
    </div>
    <script type="module" src="/main.js"></script>
  </body>
</html>