1. Version zum Testen

This commit is contained in:
Martin Rattensberger
2024-11-18 10:42:12 +01:00
parent 53a7cb9954
commit 98095814eb
5 changed files with 143 additions and 0 deletions

20
index.html Normal file
View File

@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ChatGPT Assistent</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="chat-container">
<h1>ChatGPT Assistent</h1>
<div id="chat-messages"></div>
<form id="chat-form">
<input type="text" id="user-input" placeholder="Geben Sie Ihre Nachricht ein..." required>
<button type="submit">Senden</button>
</form>
</div>
<script src="script.js"></script>
</body>
</html>