| 12345678910111213141516171819202122232425262728293031 |
- <div id="logo">
- <a href="/" style="margin-left: 0;"><img src="{{ constant('STATIC_SERVER') }}/styles/public/images/loginlogo.png" alt="Orpheus Network" title="Orpheus Network" /></a>
- </div>
-
- <div id="main">
- <div class="pwrecover">
-
- <form class="auth_form" name="recovery" id="recoverform" method="post" action="" onsubmit="return formVal();">
- <div style="width: 320px;">
- <span class="titletext">Reset your password - Step 1</span><br /><br />
- {% if sent %}
- An email has been sent to you; please follow the directions in that email to reset your password.
- {% elseif error %}
- <strong class="important_text">{{ error }}</strong><br /><br />
- {% else %}
- <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>
- <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>
- <table class="layout" cellpadding="2" cellspacing="1" border="0" align="center">
- <tr valign="top">
- <td align="right" style="white-space: nowrap;">Email address: </td>
- <td align="left"><input type="text" name="email" id="email" class="inputtext" /></td>
- </tr>
- <tr>
- <td> </td><td><input type="submit" name="reset" value="Reset!" class="submit" /></td>
- </tr>
- </table>
- {% endif %}
- </div>
- </form>
- </div>
- </div>
|