Spaces:
Running
Running
| <!-- <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <title>Interview Chat History</title> | |
| <link rel="stylesheet" href="./chat_style.css" /> | |
| </head> | |
| <body> | |
| <h2>Riwayat Chat</h2> | |
| <div class="chat-container" id="chatContainer"></div> | |
| <script src="./chat_history.js"></script> | |
| </body> | |
| </html> --> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <title>Interview History</title> | |
| <link rel="stylesheet" href="./chat_style.css" /> | |
| </head> | |
| <body> | |
| <div class="app"> | |
| <!-- Header --> | |
| <div class="header"> | |
| <div class="header-left"> | |
| <button id="backBtn" class="back-btn">←</button> | |
| <div> | |
| <div class="title">AI Interview Summary</div> | |
| <div class="subtitle" id="interviewDate"></div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Chat area --> | |
| <div class="chat-container" id="chatContainer"></div> | |
| <button id="rawBtn" class="raw-btn">Raw JSON</button> | |
| </div> | |
| <script src="./chat_history.js"></script> | |
| </body> | |
| </html> | |