You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When logging into Blazor web Inauth project using invalid characters, the "Error: Invalid login attempt" error message appears in an incorrect location and format #64002
REGRESSION INFO : Not a regression, reproduces on 10.0/9.0/8.0 app
INSTALL STEPS
Install .NET SDK version 10.0 RC 2 SDK
Apply feed
Platform
Windows
macOS
Linux
Repro Steps
Open up a normal Command Prompt (Terminal)
Create a Blazor Web Individual app, and run it using dotnet run
dotnet new blazor -int Server -au Individual -o ServerApp
cd ServerApp
dotnet run
Click the login option on the left menu bar.
Enter email and invalid password in the input box and click the login button
Actual Result
When logging in with an invalid password, the error message "Error: Invalid login attempt" appears in a different location and format, as shown in picture 1.
Expected Result
I think the location should be above the email input box, as shown in picture 2. And the format should be the same as the 6.0 project.