Something has changed, my custom phone log in routine is suddenly not working anymore.
This is the result (image) before the user was shown the input token page
I am triggering the page like this:
$("#loginButton").click(function() {
var loginUrl = "/register?connection_id=" + encodeURIComponent(connection_id) +
"&login_hint=" + encodeURIComponent("phone:" + phoneE164 + ":" + country) + "&org_code=" + encodeURIComponent(org_code);
window.location.href = loginUrl;
});