Spaces:
Running
Running
Update index.html
Browse files- index.html +10 -17
index.html
CHANGED
@@ -1,29 +1,22 @@
|
|
1 |
<!DOCTYPE html>
|
2 |
-
<html lang="
|
3 |
|
4 |
<head>
|
5 |
<meta charset="UTF-8" />
|
6 |
<link rel="stylesheet" href="style.css" />
|
7 |
-
|
8 |
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
9 |
-
<title>
|
10 |
</head>
|
11 |
|
12 |
<body>
|
13 |
-
<
|
14 |
-
|
15 |
-
<
|
16 |
-
|
17 |
-
|
18 |
-
</path>
|
19 |
-
</svg>
|
20 |
-
Click to upload image
|
21 |
-
<label id="example">(or try example)</label>
|
22 |
-
</label>
|
23 |
-
<label id="status">Loading model...</label>
|
24 |
-
<input id="upload" type="file" accept="image/*" />
|
25 |
|
26 |
-
<script src="
|
27 |
</body>
|
28 |
|
29 |
-
</html>
|
|
|
|
1 |
<!DOCTYPE html>
|
2 |
+
<html lang="de">
|
3 |
|
4 |
<head>
|
5 |
<meta charset="UTF-8" />
|
6 |
<link rel="stylesheet" href="style.css" />
|
|
|
7 |
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
8 |
+
<title>Chatbot Interface</title>
|
9 |
</head>
|
10 |
|
11 |
<body>
|
12 |
+
<div id="chat-container">
|
13 |
+
<div id="chat-box"></div>
|
14 |
+
<input type="text" id="user-input" placeholder="Nachricht eingeben...">
|
15 |
+
<button id="send-button">Senden</button>
|
16 |
+
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
|
18 |
+
<script src="script.js"></script>
|
19 |
</body>
|
20 |
|
21 |
+
</html>
|
22 |
+
|