MyBB Community Forums

Full Version: [Tutorial] Adding a note to the registration form [Updated]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
ok, so someone asked how to add a note to the registration form, so i came up with this little tutorial to do it.

First go to templates & style>templates>YOURTHEME>member templates and find member_register, once you found it, open it and search for this code, around line 132.

<input type="hidden" name="step" value="registration" />
<input type="hidden" name="action" value="do_register" />

below the code above, add this under it

<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr><td class="thead"><strong>Additional Information!</strong></td></tr>
<tr><td class="trow1">
<p><big>Please, make sure to check your spam folder for the registration email</big></p>
</td></tr>
</table>

Don't forget to put a <br /> tag before
<br /><input type="submit" class="button" name="regsubmit" value="{$lang->submit_registration}" />

And after all that this is what it will look like:
[attachment=19686]

just a simple tutorial, hope you can find it useful, report any problems here
Thanks mate.
It is very useful.
Thanks for this Smile
Nice one will use Wink
Updated, added a nicer format to display the information, screenshot updated.
Thank you. Very nice, simple tutorial, i've added this to my website. Smile
o.O good tutorial Smile helps newbies like me Smile
Heres a plugin that does something similar : http://www.mybbextras.com/showthread.php...gistration

Just gives you another option Wink