index.html 542 B

123456789101112131415161718
  1. <html>
  2. <head>
  3. <title>Trajectory Viewer</title>
  4. <link rel="stylesheet" type="text/css" href="style.css">
  5. <script src="fileViewer.js"></script>
  6. </head>
  7. <body>
  8. <div class="container">
  9. <h1>Trajectory File Viewer</h1>
  10. <ul id="fileList"></ul>
  11. <h2>Conversation History</h2>
  12. <pre id="fileContent">No file selected.</pre>
  13. <div class="button-container">
  14. <button id="refreshButton" onclick="refreshCurrentFile()">Refresh Current File</button>
  15. </div>
  16. </div>
  17. </body>
  18. </html>