Does anyone know how I can change (i.e., increase) the max allowed password length? The scaffolded login/register pages contain the attribute:
data-val-length="The Password must be at least 6 and at max 100 characters long." data-val-length-max="100" data-val-length-min="6"
They prevent longer passwords. I've tried setting options.Stores.MaxLengthForKeys = 1024 but that did result in any noticeable changes in these attributes at run-time.