MyBB Community Forums

Full Version: [BootBB] Captcha doesn't show in passwd recovery page
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello comrades

MyBB Captcha doesn't show up in the https://foro.guitarravallenata.com/membe...ion=lostpw page of my forum. However, if you switch to the Default theme, the captcha appears. 

Running MyBB 1.8.20
BootBB 2.5

Please, assist in resolving issue.
Revert or update templates > BootBB > Member Templates > member_lostpw
The template that iAndrew mentioned should have the following content and captcha will work (replace all text):

<html>
<head>
<title>{$mybb->settings['bbname']} - {$lang->lost_pw}</title>
{$headerinclude}
</head>
<body>
{$header}
{$errors}
<form action="member.php" method="post">
<div class="tborder">

<div class="thead">{$lang->lost_pw_form}</div>

  

<div class="trow1 rowbit">
<div class="formbit_label align_right" data-width="20%">{$lang->email_address}</div>
<div class="formbit_field" data-width="80%"><input type="text" class="textbox" name="email" /></div>
</div>

{$captcha}

</div>
<br />
<div class="align_center"><input name="submit" type="submit" class="button" value="{$lang->request_user_pass}" /></div>
<input type="hidden" name="action" value="do_lostpw" />
</form>
{$footer}
</body>
</html>

This fix will be added to the next version of BootBB