error.html 876 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <!DOCTYPE html>
  2. <head>
  3. <title>Interpretation Error</title>
  4. <meta charset="UTF-8">
  5. <style>
  6. body{
  7. padding: 3em;
  8. }
  9. .wrapper{
  10. margin: 12x;
  11. border: 1px solid black;
  12. width: 100%;
  13. }
  14. .title{
  15. font-size: 120%;
  16. padding: 12px;
  17. background-color: #4287f5;
  18. color: white;
  19. }
  20. .content{
  21. padding: 20px;
  22. }
  23. .footer{
  24. padding: 8px;
  25. padding-left: 12px;
  26. font-size: 80%;
  27. color: white;
  28. background-color: #4b4d82;
  29. }
  30. </style>
  31. </head>
  32. <body>
  33. <div class="wrapper">
  34. <div class="title">
  35. ⚠ {{error_msg}}
  36. </div>
  37. <div class="content">
  38. <p>AGI Script Path: {{script_filepath}}</p>
  39. <p>Execution Timestamp: {{timestamp}}</p>
  40. <p>Platform Version: {{major_version}} rev {{minor_version}}</p>
  41. </div>
  42. <div class="footer">
  43. ArOZ Online JavaScript Gateway Interface rev_{{agi_version}}
  44. </div>
  45. </div>
  46. </body>
  47. </html>