New password generator

I just added a new feature to integrate this with your MyBB forum, it will allow your members to generate a password upon registration which they can then use on your forum. I will write a tutorial in a second and link it up here on how you do it, but here is a preview for anyone that wants to see.

p3PWOok.png
 
MyBB Implementation

Templates & Style > Choose Template Name to Match Theme > Member > member_register_password. Now add this code at the BOTTOM of the field.

Code:
<tr>
      <td colspan="2">You can use our generator below to give you a secure password which isn't likely to be guessed or cracked, otherwise just enter your own above!<br><br>

<a href="#" onclick="window.open('http://pwgen.thug.pw/index.php?click=yup', 'newwindow', 'width=500, height=350'); return false;">Complex Password</a> | <a href="#" onclick="window.open('http://pwgen.thug.pw/simple.php?click=yup', 'newwindow', 'width=500, height=350'); return false;">Simple Password</a> | <a href="#" onclick="window.open('http://pwgen.thug.pw/dictionary.php?click=yup', 'newwindow', 'width=500, height=350'); return false;">Dictionary Password</a><br></td>
</tr>

Obviously you can mess with any CSS to get everything exactly how you want it.
 
Back
Top