General need
Auth0MFAWidget
with a range of options as listed here)Specific need (for the new universal login flow, not the classic universal login flow)
Note:
I raised a support ticket (from a paid company account) and got a reply:
Is there a possibility to change the default country on the MFA-SMS enrollment prompt?
Can we restrict the list of countries also?
const allList = document.getElementsByTagName("ul")[0];
Object.keys(allList.children).map(ch => {
if (allList.children[ch].innerText.search('Japan') !== -1){
allList.children[ch].style.display = none;
}
});