![]() |
|
New password generator - Printable Version +- Sinisterly (https://sinister.li) +-- Forum: Design (https://sinister.li/Forum-Design) +--- Forum: Web Design (https://sinister.li/Forum-Web-Design) +--- Thread: New password generator (/Thread-New-password-generator) Pages:
1
2
|
RE: New password generator - Slim - 05-06-2013 I just added the feature discussed earlier, wasn't quite sure what to call it in the tabs on the main pages so I haven't added a direct link from the index yet. You can view the page at the link below for now, I will be adding more to the word list throughout the day. http://pwgen.thug.pw/dictionary RE: New password generator - Slim - 05-07-2013 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.
RE: New password generator - Slim - 05-08-2013 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. |