BioTorrents.de’s version of Gazelle
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.

test.twig 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <div class="linkbox">
  2. <a href="logchecker.php?action=upload" class="brackets">Upload Missing Logs</a>
  3. <a href="logchecker.php?action=update" class="brackets">Update Uploaded Logs</a>
  4. </div>
  5. <div class="thin">
  6. <h2 class="center">Orpheus Logchecker</h2>
  7. <div class="box pad">
  8. <p>
  9. Use this page to test our logchecker. You can either upload a file or paste the contents
  10. into the text box below. This will then run the file/text against our logchecker displaying
  11. to you what it would look like on our site. To verify the checksum of a log file, you will
  12. need to upload it.
  13. </p>
  14. <table class="forum_post vertical_margin">
  15. <tr class="colhead">
  16. <td colspan="2">Upload file</td>
  17. </tr>
  18. <tr>
  19. <td>
  20. <form action="" method="post" enctype="multipart/form-data">
  21. <input type="hidden" name="action" value="take_test" />
  22. <input type="file" accept="{{ accepted }}" name="log" size="40" />
  23. <input type="submit" value="Upload log" name="submit" />
  24. </form>
  25. </td>
  26. </tr>
  27. </table>
  28. <table class="forum_post vertical_margin">
  29. <tr class="colhead">
  30. <td colspan="2">Paste log (No checksum verification)</td>
  31. </tr>
  32. <tr>
  33. <td>
  34. <form action="" method="post">
  35. <input type="hidden" name="action" value="take_test" />
  36. <textarea rows="20" style="width: 99%" name="pastelog" wrap="soft"></textarea>
  37. <br /><br />
  38. <input type="submit" value="Upload log" name="submit" />
  39. </form>
  40. </td>
  41. </tr>
  42. </table>
  43. </div>
  44. </div>