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.

connect.php 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php
  2. declare(strict_types = 1);
  3. $ID = G::$LoggedUser['ID'];
  4. $RssAuth = G::$LoggedUser['RSS_Auth'];
  5. $PassKey = G::$LoggedUser['torrent_pass'];
  6. $AuthKey = G::$LoggedUser['AuthKey'];
  7. echo $HTML = <<<HTML
  8. <div class="box">
  9. <div class="head colhead_dark">
  10. <strong>Connect</strong>
  11. </div>
  12. <ul class="nobullet">
  13. <li>
  14. <a href="feeds.php?feed=feed_news&amp;user=$ID&amp;auth=$RssAuth&amp;passkey=$PassKey&amp;authkey=$AuthKey" target="_blank">
  15. <i class="fas fa-rss" aria-hidden="true"></i>
  16. News
  17. </a>
  18. </li>
  19. <li>
  20. <a href="feeds.php?feed=feed_blog&amp;user=$ID&amp;auth=$RssAuth&amp;passkey=$PassKey&amp;authkey=$AuthKey" target="_blank">
  21. <i class="fas fa-rss" aria-hidden="true"></i>
  22. Blog
  23. </a>
  24. </li>
  25. <li>
  26. <a href="https://github.com/biotorrents" target="_blank">
  27. <i class="fab fa-github" aria-hidden="true"></i>
  28. GitHub
  29. </a>
  30. </li>
  31. <li>
  32. <a href="https://twitter.com/biotorrents" target="_blank">
  33. <i class="fab fa-twitter" aria-hidden="true"></i>
  34. Twitter
  35. </a>
  36. </li>
  37. </ul>
  38. </div>
  39. HTML;
  40. ?>