adamgent wrote:
We prompt for the users, username and password via an SSL form, which we then validate against details in a database.
Is an SSL form just a regular HTML form going over an SSL connection? Or is there actually something special called an "SSL form"?
adamgent wrote:
The forms are a lot more elegant way of doing things, than the usual dull gray popup box.
Using perl for example, you can use a form to validate against usernames and passwords against the OS, or you can put up with the dull gray box and use .htaccess and .htpasswd
Adam
Okay, just to see if I'm getting this, if I have a user submit me a username and password over the SSL connection and I wrote a program:
if passwd = "mysecretpass" then goToMemberSite()
would that be secure? What I'm getting at is that the password, if not for the SSL, would be sent in the clear by the HTML form. But as I see it, assuming I have SSL set up correctly, I don't have to do anything to hide the password data that the user sends to me. Thanks for your help Adam.