Hello,
I was going through the AccountController class (the default one). I noticed that "_FORM" is used at many places with the ModelState. For, isntance:
if (String.IsNullOrEmpty(userName))
{
ModelState.AddModelError("username", "You must specify a username.");
}
if (!String.Equals(password, confirmPassword, StringComparison.Ordinal))
{
ModelState.AddModelError("_FORM", "The new password and confirmation password do not match.");
}
It's easy to tell the meaning for the username (as it is for for email, password, and confirmpassword). but what's "_FORM"? Has it a special meaning? I did not see where it is defined.
Thank for helping