File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments