We're creating an independent Angular web page for password maintenance that will be called from all of our external applications that have logins. When changing a password, we want to pass in the user's login to pre-populate the field on the change password form. We also want to pass in a URL to return to when done. Is there any way to pass these values to the Angular app other then adding the to the URL (as route parameters or query parms)? We'd rather these values didn't appear in the URL.
Thought about forms but don't think would work because they're designed for the client app to post data to the server - not for the client app to received data - don't think Angular has a way to examine the active route for forms data.