Skip to content

Commit e0ec341

Browse files
authored
Update chat.html
1 parent aca8eea commit e0ec341

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

templates/chat.html

+27
Original file line numberDiff line numberDiff line change
@@ -1 +1,28 @@
1+
<!-- templates/chat.html -->
2+
<!DOCTYPE html>
3+
<html lang="de">
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>ChatGPT Clone</title>
8+
<link rel="stylesheet" href="https://unpkg.com/pico.css">
9+
<link rel="stylesheet" href="style.css">
10+
</head>
11+
<body>
12+
<main class="container">
13+
<h1>ChatGPT Clone</h1>
14+
<form id="chat-form" enctype="multipart/form-data">
15+
<label for="message">Nachricht:</label>
16+
<textarea id="message" name="message" rows="4" required></textarea>
17+
18+
<label for="file">Bild hochladen (optional):</label>
19+
<input type="file" id="file" name="file" accept="image/*">
20+
21+
<button type="submit">Senden</button>
22+
</form>
23+
<div id="chat-box"></div>
24+
</main>
25+
<script src="script.js"></script>
26+
</body>
27+
</html>
128

0 commit comments

Comments
 (0)