MyBB Community Forums

Full Version: member_lostpw not working
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi everyone , https://forum.blenderturk.com/ in my forum resend activation not working please helpme 

<html>
<head>
<title>{$mybb->settings['bbname']} - {$lang->lost_pw}</title>
{$headerinclude}
</head>
<body>
{$header}
<form action="member.php" method="post">
<div class="panel trow1" >
               <div class="thead">   
                  <div class="panel-title">
                     <span class="white">{$lang->lost_pw_form}</span></div>
               </div>
                <div class=" form-horizontal">
                <div class="form-group form-group-sm padding_15_0">   
                  <label class="col-sm-3 control-label" style="text-align: right !important;">{$lang->email_address}</label>   
                  <div class="col-sm-5">     
                    <input name="email" class="form-control" placeholder="" type="text"> 
                  </div> 
                </div> 
              </div>
</div>

<div align="center"><input type="submit" class="button" value="{$lang->request_user_pass}" /></div>
<input type="hidden" name="action" value="do_lostpw" /><br />
</form>
{$footer}
</body>
</html>
it is my member_lostpw code

Also send first activation mail

I did it I look wrong side directly I open member_resendactivation template and add {$captcha} like that 
<html>
<head>
<title>{$mybb->settings['bbname']} - {$lang->resend_activation}</title>
{$headerinclude}
</head>
<body>
{$header}
<form action="member.php" method="post">
<div class="panel trow1" >
               <div class="thead">   
                  <div class="panel-title">
                     <span class="white">{$lang->resend_activation}</span></div>
               </div>
                <div class=" form-horizontal">
                <div class="form-group form-group-sm padding_15_0">   
                  <label class="col-sm-3 control-label">{$lang->email_address}</label>   
                  <div class="col-sm-9">     
                    <input name="email" class="form-control" placeholder="" type="text"> 
                  </div> 
					{$captcha}
                </div> 
              </div>
</div>

<div align="center"><input type="submit" class="button" value="{$lang->request_activation}" /></div>
<input type="hidden" name="action" value="do_resendactivation" /><br />
</form>
{$footer}
</body>
</html>
 so dont touch lostpw
https://docs.mybb.com/1.8/faq/mail/

Try this test and see if it works.