Page 1 of 1

Cross page submission

Posted: Mon May 29, 2006 3:52 am
by t-cat
Scenario:

Website A has a user login screen, but does not have the desired appearance. Website A can't be changed.

Website B has a user login form, has the desired appearance, and can be changed.

Objective:

When a user clicks on Submit on Website B, the form information is sent to website A and submitted, so the end user never actually sees website A.

Any solutions?

Posted: Mon May 29, 2006 4:03 am
by timvw
Change the 'action' in the form on pageB to one of your own scripts.
In that script you gather the credentials, use curl to perform the request at pageA with the submitted credentials, and send back the results to the user.

Posted: Mon May 29, 2006 4:23 am
by t-cat
Thanks for the help. Will look into curl.