-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (60 loc) · 2.01 KB
/
index.html
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<header>
<title>DeepLab</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</header>
<body>
<h1>MaquinaDosSonhos - DeeplabProject</h1>
<fieldset> <div>
Por favor, coloque sua <a href="https://openai.com/api/ " target="_blank">API Key</a>: <input id="api-key" value="API-key-value">
</div>
</fieldset>
<div>
<p>Digite uma frase, a partir disso a Maquina dos sonhos construirá uma imagem para você!</p>
</div>
<fieldset>
<legend>Configurações</legend>
<div>
Prompt:
</div>
<div>
<textarea id="text-prompt" rows="4" cols="52">An isometric view of a miniature city, tilt shift, bokeh, voxel, vray render, high detail</textarea>
</div>
<div>
Número de Imagens (1-4): <input id="image-count" value="1">
</div>
<div>
Resolução:
</div>
<div>
<input type="radio" id="radio-256" name="image-size" value="256" checked>
<label for="256">256 x 256</label>
</div>
<div>
<input type="radio" id="radio-512" name="image-size" value="512" checked>
<label for="512">512 x 512</label>
</div>
<div>
<input type="radio" id="radio-1024" name="image-size" value="1024" checked>
<label for="1024">1024 x 1024</label>
</div>
<div >
<button id="button-request" >Request</button>
</div>
</fieldset>
<fieldset>
<legend>Request Status</legend>
<p id="request-status" >Nenhum Request ainda.</p>
</fieldset>
<fieldset>
<Legend>Imagens</Legend>
<div>
<!--Imagens aparecerão aqui-->
<div id="image-container"></div>
</div>
</fieldset>
<script type="text/javascript" src="js/script.js">
</script>
</body>
</html>