abp-samples
abp-samples copied to clipboard
Sample project login prompt: InvalidUserNameOrPassword
The error stems from a discrepancy in password settings between the default values in the source code of abp.vnext and the example you are using. Specifically, the default password in the abp.vnext source code is "1q2w3E*", whereas in your example, it is listed as "1q2w3e*". This inconsistency may be the root cause of the error you are experiencing.
You can find the source code for the abp.vnext default password settings in the following file: appsettings
Additionally, the default password connection in abp.vnext can be found in the following file: IdentityDataSeedContributor
Please ensure that the password settings in your example match those in the abp.vnext source code to resolve this issue.