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.

disabled.twig 2.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <div id="logo">
  2. <a href="/" style="margin-left: 0;"><img src="{{ constant('STATIC_SERVER') }}/styles/public/images/loginlogo.png" alt="{{ constant('SITE_NAME') }}" title="{{ constant('SITE_NAME') }}" /></a>
  3. </div>
  4. <script type="text/javascript">
  5. function toggle_visibility(id) {
  6. var e = document.getElementById(id);
  7. if (e.style.display === 'block') {
  8. e.style.display = 'none';
  9. } else {
  10. e.style.display = 'block';
  11. }
  12. }
  13. </script>
  14. {% if auto %}
  15. <div style="width: 100%">
  16. <div style="width: 60%; margin: 0 auto;">
  17. {{ message }}
  18. <br /><br /><a href='login.php?action=disabled'>Back</a>
  19. </div>
  20. </div>
  21. {% else %}
  22. <p class="warning-login">
  23. Your account has been disabled.<br />
  24. This is either due to inactivity or rule violation(s).</p>
  25. <div style="width: 100%">
  26. <div style="width: 65%; margin: 0 auto;">
  27. {% if constant('FEATURE_EMAIL_REENABLE') %}
  28. <p>If you believe your account was in good standing and was disabled
  29. for inactivity, you may request it be re-enabled via email using
  30. the form below. Please note that you will need access to the email
  31. account associated with your account at {{ constant('SITE_NAME') }} if you
  32. cannot do so, please see below.</p>
  33. <form action="" method="POST">
  34. <input type="email" class="inputtext" placeholder="Email Address" name="email" required /> <input type="submit" value="Enable" />
  35. <input type="hidden" name="username" value="{{ username }}" />
  36. </form>
  37. <br />
  38. {% endif %}
  39. <p>If you are unsure why your account is disabled, or you wish to
  40. discuss this with staff, come to our IRC network at
  41. <b>{{ constant('BOT_SERVER') }}</b> and join the
  42. <b>{{ constant('BOT_DISABLED_CHAN') }}</b>&nbsp;channel. Use of Mibbit is
  43. <i>not</i> recommended. If nobody is online when you join, after a
  44. time your session will be disconnected and you will never receive
  45. a reply and will have to connect again. It could be a while before
  46. you manage to move forward.</p>
  47. <p><strong>Be honest.</strong> At this point, lying will get you
  48. nowhere.</p>
  49. <strong>Before joining the disabled channel, please read our <span
  50. style="color: gold;">Golden Rules</span> right
  51. <a style="color: #1464F4;" href="#" onclick="toggle_visibility('golden_rules')">here</a>.</strong>
  52. <br /><br />
  53. <div id="golden_rules" class="rule_summary" style="width: 90%; display: none; text-align: left;">
  54. {% include 'rules/golden.twig' %}
  55. </div>
  56. </div>
  57. </div>
  58. {% endif %}