Yes, and that is part of the issue. Given that the credentials are shared among several users, and need to be changed every 90 days, we run into problems where the stored credentials become invalid. The user tries multiple times and ends up locking the account, which then needs to be unlocked.
The idea here is that if they used the link I want to create, they would always be using the correct credentials.
User Profile
Collapse
-
Thanks for your help on this so far.
If a bookmarklet won't work, do you have any other ideas as to how I can approach this? My goal is to have a page that would list all sites that we use a shared password for. When you clicked on the site, it would take you to the site and enter your credentials. Thanks again!Leave a comment:
-
The difference is the name of the function and the fact that I have parenthesis and you do not. When I remove the parenthesis, the same thing happens - the page opens, but the fields are not pre loaded. If I rename the function, that does not work either.Leave a comment:
-
Sorry, but I am still not getting what is wrong with line 2. I tried putting the function call after the function definition, like so:
...Code:javascript:window.location.href ="https://mysite.com"; function PreFill() { document.forms[0].elements["oper"].value ='Eric'; document.forms[0].elements["pswd"].value = 'secret'; }; window.onload = PreFill();Leave a comment:
-
OK - I think I'm not getting it. Here's what I've got:
If I execute this from a different website, it will take me to the desired website...Code:javascript:window.location.href ="https://mysite.com"; window.onload = PreFill(); function PreFill() { document.forms[0].elements["oper"].value ='Eric'; document.forms[0].elements["pswd"].value = 'secret'; }Leave a comment:
-
I tried this:
No luck, it navigates to the page but does not fill out the fields. Any ideas as to why not?...Code:javascript:window.location.href ="https://www.mysite.com";window.onload = document.forms[0].elements["oper"].value ='Eric';document.forms[0].elements["pswd"].value = 'secret';
Leave a comment:
-
Autofill user name and password
Hello,
I have a situation where I have to share user names and passwords for a list of sites among several (30 or so) users. These passwords must be reset every 90 days and anytime any one of the users is no longer employed by us. As you can imagine, the user will get locked frequently due to people not paying attention to when a password changes.
I want to create a web site that has a link to each site that when clicked...
No activity results to display
Show More
Leave a comment: