Login Page opened in New Tab when using on OAuth login.

0
When user clicks on login using social accounts e.g. google using OAuth, the page is opened in new tab keeping the old tab on same state. Please suggest an option to open the login page on same tab. It is a simple button with Open Link action.
asked
1 answers
2

Unfortunately, the Mendix “Open Link” action is not able to open a link in the same tab. To solve your problem, this is exactly what you want. First: it seems that you opened your application to anonymous users, do you really want that? You can just show the login link on the login.html, wouldn't that be an option?

In order to open a link in the same tab, you need a widget to do this.

Option 1: use the HTML Snippet widget and put something like this in:

<a href="/signin/google">click here</a>

Option 2: use the Clickable Container widget and point to /signin/google

Good luck!

answered