I have a simple login form that lets users log into my website. Once logged in, there is a 3rd party site that I link which users can access and run searches on (its a database resource that we are partnered with). The problem is in order to access that 3rd party database they first have to log in to THAT site with a simple passphrase (which is the same for every user) and get a cookie.
I'd like to simplify the whole process by running a jquery $get call to that 3rd party website when users sign in to my website so that they are authenticated with that 3rd party cookie and can seamlessly accesses the 3rd party database. Is that possible?