User Profile

Collapse

Profile Sidebar

Collapse
ejstefl
ejstefl
Last Activity: Dec 16 '09, 08:21 PM
Joined: Dec 2 '09
Location: Milwaukee, WI USA
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • ejstefl
    replied to Autofill user name and password
    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.
    See more | Go to post

    Leave a comment:


  • ejstefl
    replied to Autofill user name and password
    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!
    See more | Go to post

    Leave a comment:


  • ejstefl
    replied to Autofill user name and password
    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.
    See more | Go to post

    Leave a comment:


  • ejstefl
    replied to Autofill user name and password
    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();
    ...
    See more | Go to post

    Leave a comment:


  • ejstefl
    replied to Autofill user name and password
    OK - I think I'm not getting it. Here's what I've got:

    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';
    }
    If I execute this from a different website, it will take me to the desired website...
    See more | Go to post

    Leave a comment:


  • ejstefl
    replied to Autofill user name and password
    I tried this:

    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';
    No luck, it navigates to the page but does not fill out the fields. Any ideas as to why not?...
    See more | Go to post

    Leave a comment:


  • ejstefl
    started a topic Autofill user name and password

    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...
    See more | Go to post
    Last edited by Dormilich; Dec 2 '09, 09:38 PM. Reason: Please use [code] tags when posting code
No activity results to display
Show More
Working...