I want to password protect my page which I am doing using LDAP bind authentication. That whole process and script is fine. Now I have this form which submits to that script and that script checks whether the user has authentication or not, if they don't it kicks them out.

What I am trying to do here is this. http://jsfiddle.net/s5JyR/ that form I have there, I would like to make that a popup login instead so as soon as a user goes to the url of the site they get a blank page with a POPUP screen asking for the login. How can I do make that popup? if the user clicks cancel it should display Error. Access denied. Or if the user inputs the wrong login credentials display that same error message. The error messages don't need to be a popup, they can be displayed on a different blank page. All the forms I have looked around Google have a popup from a button which isn't what I want..

I am trying to make something like this:

enter image description here

link|improve this question

73% accept rate
feedback

1 Answer

up vote 0 down vote accepted

In Javascript you can do that by opening a new Window with the window.open() method, opening an URL with the form and then capturing its information from outside. But that might fail in platforms not supporting it.

Another method can be showing the form in a floating box, but it is still Javascript dependant.

Maybe what you actually want is an HTTP login form, it is not Javascript but it does exactly what you ask for. Though you will have to handle everything server-side.

Take a look at HTTP Authentication with PHP to learn about this.
...Assuming that you have PHP for server side scripting, if not, it is still a good reference that you can not-so-differently implement in other languages.

link|improve this answer
I thought this would be simple..PHP's htaccess file allows you to password protect files and queries for credentials with a popup form and if you dotn enter the credentials you get denied... – Nadal Oct 7 '11 at 15:10
@Nadal this is actually pretty much the same, the same protocol/way to do it, but in this case you can have more control and you are not limited to control access on a single file. – user912695 Oct 7 '11 at 16:04
feedback

Your Answer

 
or
required, but never shown

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