You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.3KB

  1. <!DOCTYPE html>
  2. <html lang="fr">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>Assistant</title>
  7. <base href="/" />
  8. <link rel="stylesheet" href="css/bootstrap/bootstrap.min.css" />
  9. <link rel="stylesheet" href="css/app.css" />
  10. <link rel="icon" type="image/png" href="favicon.png" />
  11. <link href="ReAct_PME.WebUI.styles.css" rel="stylesheet" />
  12. <link href="https://cdn.jsdelivr.net/npm/@mdi/font/css/materialdesignicons.min.css" rel="stylesheet">
  13. </head>
  14. <body>
  15. <div id="app">
  16. <svg class="loading-progress">
  17. <circle r="40%" cx="50%" cy="50%" />
  18. <circle r="40%" cx="50%" cy="50%" />
  19. </svg>
  20. <div class="loading-progress-text"></div>
  21. </div>
  22. <div id="blazor-error-ui">
  23. An unhandled error has occurred.
  24. <a href="" class="reload">Reload</a>
  25. <a class="dismiss">🗙</a>
  26. </div>
  27. <script src="_framework/blazor.webassembly.js"></script>
  28. <script>
  29. function resizeTextarea(id) {
  30. const textarea = document.getElementById(id);
  31. if (textarea) {
  32. textarea.style.height = 'auto';
  33. textarea.style.height = textarea.scrollHeight + 'px';
  34. }
  35. }
  36. </script>
  37. </body>
  38. </html>