@using LeafWeb.Web.Utility @model object @{ var htmlAttributes = new RouteValueDictionary(); if (ViewBag.@class != null) { htmlAttributes.Add("class", "form-control " + ViewBag.@class); } else { htmlAttributes.Add("class", "form-control"); } }
@Html.LabelFor(m => m, new { @class = "control-label" })
@Html.Password( "", ViewData.TemplateInfo.FormattedModelValue, htmlAttributes) @Html.ValidationMessageFor(m => m, null, new { @class = "help-block" })