index.html 974 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta http-equiv="Content-type" content="text/html; charset=utf-8">
  5. <title>Project1</title>
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <link href="bulma.min.css" rel="stylesheet">
  8. <script src="hostconfig.js"></script>
  9. <script src="regexphost.js"></script>
  10. <style>
  11. #pasjsconsole {
  12. border-style: solid;
  13. border-width: 1px;
  14. margin-left: 64px;
  15. margin-right: 64px;
  16. min-height: 75vh;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <div class="container">
  22. <h3 class="title is-3">Webassembly program output</h3>
  23. <hr>
  24. <div class="box">
  25. <div id="pasjsconsole"></div>
  26. </div>
  27. <div>
  28. <label for="cbLog">
  29. <input id="cbLog" type="checkbox" checked autocomplete="off">
  30. Show API log
  31. </label>
  32. </div>
  33. </div>
  34. <script>
  35. rtl.showUncaughtExceptions=true;
  36. window.addEventListener("load", rtl.run);
  37. </script>
  38. </body>
  39. </html>