Hi @Johnson Jayaraj ,
Thanks for reaching out.
Unfortunately, you cannot control the auto-fill behavior of the browser when redirecting to the Azure login page.
As you mentioned, the only way to prevent auto-fill in this case would be to modify the HTML or Javascript of the login page.
export default function App() {
return (
<div>
{/* disable autocomplete on input fields */}
<input type="text" id="message" autoComplete="off" />
<input type="password" id="password" autoComplete="new-password" />
<form autoComplete="off">
<input type="text" id="first" />
<input type="text" id="last" />
</form>
</div>
);
}
As mentioned before, unfortunately this feature is not supported using MSAL as of now.
I would suggest you post this idea at the Azure Feedback Portal, which is monitored by the product team for feature enhancements.
Thank you for your time and patience throughout this issue.
Hope this will help.
Thanks,
Shweta
Please remember to "Accept Answer" if answer helped you.