tags:

views:

20

answers:

1

I've got a pretty form that loads on any page on the site to prompt a user to login. However this can be from any http page.

The login form processing script however is in https, or at least it should be so that the information is secure.

Can I submit the login request via POST if i specify in the action that it should be sent over https?

+1  A: 

yes. you just set the (login form ) action to https URL with method POST.

Adeel
does it submit the info over https though or http?
codeninja
@codeninja it will submit the data over https.
Adeel