alexgeek
12-23-2007, 10:00 PM
What it does.
This mini-mod will detect if the password entered is in all caps and alert the user that caps lock may be on. Not much of a mod I know, but this is my first.
Step 1.
Upload tooltip.js to the your forum root (website.com/, website.com/forums/ etc.).
Step 2.
In navbar at the following at the top.
<script type="text/javascript" src="tooltip.js"></script>
Step 3.
find the following in navbar or header (possibly other template, dependent on style.):
<input name="vb_login_password" id="navbar_password" type="password" tabindex="102" class="forms3" />
Replace it with:
<input type="password" class="bginput" style="font-size: 11px" name="vb_login_password" id="navbar_password" size="10" tabindex="102" onkeydown="caps(this.value);" />
Done!
Test by putting caps lock on and entering a password such as "AAAA" you should get a small tooltip as a warning (may take a second to load).
German Version (https://vborg.vbsupport.ru/showthread.php?p=1408036#post1408152)
This mini-mod will detect if the password entered is in all caps and alert the user that caps lock may be on. Not much of a mod I know, but this is my first.
Step 1.
Upload tooltip.js to the your forum root (website.com/, website.com/forums/ etc.).
Step 2.
In navbar at the following at the top.
<script type="text/javascript" src="tooltip.js"></script>
Step 3.
find the following in navbar or header (possibly other template, dependent on style.):
<input name="vb_login_password" id="navbar_password" type="password" tabindex="102" class="forms3" />
Replace it with:
<input type="password" class="bginput" style="font-size: 11px" name="vb_login_password" id="navbar_password" size="10" tabindex="102" onkeydown="caps(this.value);" />
Done!
Test by putting caps lock on and entering a password such as "AAAA" you should get a small tooltip as a warning (may take a second to load).
German Version (https://vborg.vbsupport.ru/showthread.php?p=1408036#post1408152)