log.html 1.4 KB

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Log File</title>
  5. </head>
  6. <body>
  7. <div id="logPage" data-role="page" class="page type-interior">
  8. <div data-role="content">
  9. <div class="content-primary">
  10. <div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
  11. <a href="support.html" data-role="button">General</a>
  12. <a href="log.html" data-role="button" class="ui-btn-active">View Log</a>
  13. <a href="supporter.html" data-role="button">Become a Supporter</a>
  14. <a href="supporterKey.html" data-role="button">Supporter Key</a>
  15. </div>
  16. <p>
  17. <label for="chkAutoScroll">Auto-scroll</label>
  18. <input type="checkbox" id="chkAutoScroll" onchange="LogPage.updateAutoScroll(this.checked);" name="chkAutoScroll" data-inline="true" />
  19. </p>
  20. <textarea id="logContents" class="pre" style="overflow-y:hidden;"></textarea>
  21. <p>
  22. <label for="chkAutoScrollBottom">Auto-scroll</label>
  23. <input type="checkbox" id="chkAutoScrollBottom" name="chkAutoScrollBottom" onchange="LogPage.updateAutoScroll(this.checked);" data-inline="true" />
  24. </p>
  25. </div>
  26. </div>
  27. </div>
  28. </body>
  29. </html>