vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB4 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=252)
-   -   Turn autocomplete off in login form (https://vborg.vbsupport.ru/showthread.php?t=274997)

djvd-sammobile 12-03-2011 12:57 PM

Turn autocomplete off in login form
 
Hi all,

for a recent project, my boss asks me to implement the autocomplete=off html attribute in the login form.
Do you know in which file I have to edit the login form?

And if it's a good idea at all? Everybody is like; well it's more secure, but it's also annoying I think.

Regards,

LifesGreatestGift 12-04-2011 06:12 AM

I would recommend using jquery

Code:

$('.autoDisable').attr('autocomplete','off');
and add
Code:

class="autoDisable"
to all input fields and forms you would like to disable autocomplete.

for example on the username input field

before

Code:

<input type="text" class="textbox default-value" name="vb_login_username" id="navbar_username" size="10" accesskey="u" tabindex="101" value="User Name" style="color: rgb(130, 130, 130); ">
after

Code:

<input type="text" class="textbox default-value autoDisable" name="vb_login_username" id="navbar_username" size="10" accesskey="u" tabindex="101" value="User Name" style="color: rgb(130, 130, 130); ">

djvd-sammobile 12-04-2011 08:38 AM

Thanks for your reply sir. Would it be advisable to do that on the username or password field?
And which files contain the username input field code you quoted above?

LifesGreatestGift 12-04-2011 04:30 PM

couldnt hurt to do both. remember to include the jquery library in order for the jquery code to work (when placed in javascript element). Username/password code is in the header template.

--------------- Added [DATE]1323020021[/DATE] at [TIME]1323020021[/TIME] ---------------

here is the actual code for the username/password fields

Code:

                                        <input type="text" class="textbox<vb:if condition="!$username"> default-value</vb:if>" name="vb_login_username" id="navbar_username" size="10" accesskey="u" tabindex="101" value="<vb:if condition="$username">{vb:raw username}<vb:else />{vb:rawphrase username}</vb:if>" />
                                        <input type="password" class="textbox" tabindex="102" name="vb_login_password" id="navbar_password" size="10" />
                                        <input type="text" class="textbox default-value" tabindex="102" name="vb_login_password_hint" id="navbar_password_hint" size="10" value="{vb:rawphrase password}" style="display:none;" />


SMosher 10-12-2012 02:24 PM

I know this thread is old but Im lost on the use jquery usage.

Very lost and trying to solve the same issue as djvd-sammobile


All times are GMT. The time now is 01:25 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.00996 seconds
  • Memory Usage 1,721KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (5)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (5)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete