MyBB Community Forums

Full Version: Reset Password not working.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Reset Password doesn't work, the password that is generated doesn't work. I've had a lot of people complain to me i have no idea how to fix it.

Could someone provide a fix for this? It's stressful.

Thanks in advance!
Heres the code from my template that works.


<html>
<head>
<title>{$mybb->settings['bbname']} - {$lang->reset_password}</title>
{$headerinclude}
</head>
<body>
{$header}
<br />
<form action="member.php" method="post">
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead" colspan="2"><strong>{$lang->reset_password}</strong></td>
</tr>
<tr>
<td class="trow1" width="30%"><strong>{$lang_username}</strong></td>
<td class="trow1"><input type="text" class="textbox" name="username" value="{$user['username']}" /></td>
</tr>
<tr>
<td class="trow1" width="30%"><strong>{$lang->activation_code}</strong></td>
<td class="trow1"><input type="text" class="textbox" name="code" value="{$code}" /></td>
</tr>
</table>
<br />
<div align="center"><input type="hidden" name="action" value="resetpassword" /><input type="submit" class="button" name="regsubmit" value="{$lang->send_password}" /></div>
</form>
{$footer}
</body>
</html>
I've fixed this.
(2016-01-07, 03:20 AM)Swifter Wrote: [ -> ]I've fixed this.

how?