Hey, I'm working on a web app that has a login dialog that works like this:

  1. User clicks "login"
  2. Login form HTML is loaded with AJAX and displayed in DIV on page
  3. User enters user/pass in fields and clicks submit. It's NOT a <form> -- user/pass are submitted via AJAX
  4. If user/pass are okay, page reloads with user logged in.
  5. If user/pass are bad, page does NOT reload but error message appears in DIV and user gets to try again.

Here's the problem: the browser never offers the usual "Save this password? Yes / Never / Not Now" prompt that it does for other sites.

I tried wrapping the <div> in <form> tags with "autocomplete='on'" but that made no difference.

Is it possible to get the browser to offer to store the password without a major rework of my login flow?

thanks Eric

p.s. to add to my question, I'm definitely working with browers that store passwords, and I've never clicked "never for this site" ...this is a technical issue with the browser not detecting that it's a login form, not operator error :-)

link|improve this question

74% accept rate
Don't forget that not all browsers can store passwords. – The Elite Gentleman Mar 4 '10 at 20:07
mabe the browser offered to save your user/pass and you clicked "Never ask again!" ? – clyfe Mar 4 '10 at 20:07
1  
Related: stackoverflow.com/questions/6142725/… – Pumbaa80 Jul 22 '11 at 9:13
feedback

9 Answers

up vote 8 down vote accepted

Perhaps I can help...

Here is an example of an ajax form that will NOT work (the browser will not offer to save the password)

<form id="loginform">
 <label for="username">Username</label>
 <input name="username" type="text" value="" required="required" />
 <label for="password">Password</label>
 <input name="password" type="password" value="" required="required" />
 <input type="button" name="doLogin" value="Login" onclick="login(this.form.username.value,this.form.password.value);" />
</form>

The browser will not offer to save the password, because this form does not have a submit button and not a valid url in action field.

But that may change if you make some changes in your code:

<form id="loginform" action="login.php" onSubmit="return login(this);">
 <label for="username">Username</label>
 <input name="username" type="text" value="" required="required" />
 <label for="password">Password</label>
 <input name="password" type="password" value="" required="required" />
 <input type="submit" name="doLogin" value="Login" />
</form>

The Javascript looks like this:

function login(f){
var username = f.username.value;
var password = f.password.value;

//make your validation and ajax magic here

return false; //or the form will post your data to login.php
}
link|improve this answer
feedback

This solution worked for me posted by Eric on the codingforums


The reason why it does not prompt it is because the browser needs the page to phyiscally to refresh back to the server. A little trick you can do is to perform two actions with the form. First action is onsubmit have it call your Ajax code. Also have the form target a hidden iframe.

Code:

<iframe src="ablankpage.htm" id="temp" name="temp" style="display:none"></iframe>
<form target="temp" onsubmit="yourAjaxCall();">

See if that causes the prompt to appear.

Eric


Posted on http://www.codingforums.com/showthread.php?t=123007

link|improve this answer
1  
As a note, I found that Chrome 11 does not offer to save your credentials if the form is submitted to itself. So you need to set action to some dummy page. – Pumbaa80 Jul 22 '11 at 9:16
feedback

The browser might not be able to detect that your form is a login form. According to some of the discussion in this previous question, a browser looks for form fields that look like <input type="password">. Is your password form field implemented similar to that?

Edit: To answer your questions below, I think Firefox detects passwords by form.elements[n].type == "password" (iterating through all form elements) and then detects the username field by searching backwards through form elements for the text field immediately before the password field (more info here). From what I can tell, your login form needs to be part of a <form> or Firefox won't detect it.

link|improve this answer
It's similar, yes, thanks I'll accept this as the official answer since this is about as close as we're getting. Here's something frustrating: I can't seem to find (anywhere on the web) a simple blog post that says "Here are the rules that browsers use to detect if the form you're filling out is a login form, so they can offer to save the user's password." Considering this is a bit of black magic (and considering Mozilla, at least, is open source), you'd think someone would just publish the heuristics. – Eric Mar 6 '10 at 21:51
(And similarly, there doesn't seem to be a way for me to "hint" my login form so the browser knows it's a login form. Again, surprised this isn't better documented out there on the web. I think my changes will be to the form field names and the overall HTML structure, and then I hope [!] that fixes the problem.) – Eric Mar 6 '10 at 21:53
Okay, no luck. I've asked a new question, approaching this from a slightly different angle: stackoverflow.com/questions/2398763/… – Eric Mar 8 '10 at 1:16
You could check the source code. – George Edison Apr 2 '10 at 21:17
feedback

I tried spetson's answer but that didn't work for me on Chrome 18. What did work was to add a load handler to the iframe and not interrupting the submit (jQuery 1.7):

function getSessions() {
    $.getJSON("sessions", function (data, textStatus) {
        // Do stuff
    }).error(function () { $('#loginForm').fadeIn(); });
}
$('form', '#loginForm').submit(function (e) {
    $('#loginForm').fadeOut();
}); 
$('#loginframe').on('load', getSessions);
getSessions();

The HTML:

<div id="loginForm">
    <h3>Please log in</h3>
    <form action="/login" method="post" target="loginframe">
            <label>Username :</label>
            <input type="text" name="login" id="username" />
            <label>Password :</label>
            <input type="password" name="password" id="password"/>
            <br/>
            <button type="submit" id="loginB" name="loginB">Login!</button>
    </form>
</div>
<iframe id="loginframe" name="loginframe"></iframe>

getSessions() does an AJAX call and shows the loginForm div if it fails. (The web service will return 403 if the user isn't authenticated).

Tested to work in FF and IE8 as well.

link|improve this answer
feedback

Your site is probably already in the list where the browser is told not to prompt for saving a password. In firefox, Options -> Security -> Remember password for sites[check box] - exceptions[button]

link|improve this answer
feedback

You may attached the dialog to the form, so all those inputs are in a form. The other thing is make the password text field right after the username text field.

link|improve this answer
feedback

Not every browser (e.g. IE 6) has options to remember credentials.

One thing you can do is to (once the user successfully logs in) store the user information via cookie and have a "Remember Me on this machine" option. That way, when the user comes again (even if he's logged off), your web application can retrieve the cookie and get the user information (user ID + Session ID) and allow him/her to carry on working.

Hope this can be suggestive. :-)

link|improve this answer
I wouldn't store user information in a cookie, at least anything sensitive. – Jack Marchetti Mar 4 '10 at 20:33
I didn't mean store the user password. Obviously you would have to be very creative in how you will have to create useful garbage to identify user info. Even SO stores info in cookie in order to recognise you. – The Elite Gentleman Mar 4 '10 at 20:44
fair enough, but i'd still encrypt as much as you could. – Jack Marchetti Mar 4 '10 at 20:54
feedback

The truth is, you can't force the browser to ask. I'm sure the browser has it's own algorithm for guessing if you've entered a username/password, such as looking for an input of type="password" but you cannot set anything to force the browser.

You could, as others suggest, add user information in a cookie. If you do this, you better encrypt it at the least and do not store their password. Perhaps store their username at most.

link|improve this answer
And you suggest cookies? – The Elite Gentleman Mar 4 '10 at 20:45
i say to encrypt whatever you store in them though. – Jack Marchetti Mar 4 '10 at 20:48
feedback

Using a cookie would probably be the best way to do this.

You could have a checkbox for 'Remember me?' and have the form create a cookie to store the //user's login// info. EDIT: User Session Information

To create a cookie, you'll need to process the login form with PHP.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.