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?
Cross page submission
Moderator: General Moderators
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.
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.