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.

reset-password.twig 1.5KB

12345678910111213141516171819202122232425262728293031
  1. <div id="logo">
  2. <a href="/" style="margin-left: 0;"><img src="{{ constant('STATIC_SERVER') }}/styles/public/images/loginlogo.png" alt="Orpheus Network" title="Orpheus Network" /></a>
  3. </div>
  4. <div id="main">
  5. <div class="pwrecover">
  6. <form class="auth_form" name="recovery" id="recoverform" method="post" action="" onsubmit="return formVal();">
  7. <div style="width: 320px;">
  8. <span class="titletext">Reset your password - Step 1</span><br /><br />
  9. {% if sent %}
  10. An email has been sent to you; please follow the directions in that email to reset your password.
  11. {% elseif error %}
  12. <strong class="important_text">{{ error }}</strong><br /><br />
  13. {% else %}
  14. <p>If the email address you gave is in our records, a message will be sent to it, with information on how to reset your password.</p>
  15. <p>If you do not receive an email you will need to come to IRC and join {{ constant('BOT_DISABLED_CHAN') }} on {{ constant('BOT_SERVER') }}.</p>
  16. <table class="layout" cellpadding="2" cellspacing="1" border="0" align="center">
  17. <tr valign="top">
  18. <td align="right" style="white-space: nowrap;">Email address:&nbsp;</td>
  19. <td align="left"><input type="text" name="email" id="email" class="inputtext" /></td>
  20. </tr>
  21. <tr>
  22. <td>&nbsp;</td><td><input type="submit" name="reset" value="Reset!" class="submit" /></td>
  23. </tr>
  24. </table>
  25. {% endif %}
  26. </div>
  27. </form>
  28. </div>
  29. </div>