Mounhim

Results 2 issues of Mounhim

I have a computed property in my viewmodel like this: ``` [Computed] public int PasswordScore { get { var strongRegex = new Regex("^(?=.{8,})(?=.*[A-Z])(?=.*[a-z])(?=.*[0-9])(?=.*\\W).*$"); var mediumRegex = new Regex("^(?=.{7,})(((?=.*[A-Z])(?=.*[a-z]))|((?=.*[A-Z])(?=.*[0-9]))|((?=.*[a-z])(?=.*[0-9]))).*$"); //var enoughRegex...

Maybe I am doing something wrong: 1. Create a template in Umbraco 2. Put the following line in the template: @Html.Action("RenderForgottenPassword","AuthSurface") 3. Form gets rendered within the template. Now post...