log.html 1.4 KB

12345678910111213141516171819202122232425262728293031
  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. <a href="about.html" data-role="button">About</a>
  16. </div>
  17. <p>
  18. <label for="chkAutoScroll">Auto-scroll</label>
  19. <input type="checkbox" id="chkAutoScroll" onchange="LogPage.updateAutoScroll(this.checked);" name="chkAutoScroll" data-inline="true" />
  20. </p>
  21. <textarea id="logContents" class="pre" style="overflow-y:hidden;"></textarea>
  22. <p>
  23. <label for="chkAutoScrollBottom">Auto-scroll</label>
  24. <input type="checkbox" id="chkAutoScrollBottom" name="chkAutoScrollBottom" onchange="LogPage.updateAutoScroll(this.checked);" data-inline="true" />
  25. </p>
  26. </div>
  27. </div>
  28. </div>
  29. </body>
  30. </html>