mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
24 lines
908 B
Plaintext
24 lines
908 B
Plaintext
@using Orchard.DisplayManagement.Shapes
|
|
@using Orchard.DynamicForms.Elements
|
|
@using Orchard.Layouts.Helpers
|
|
@{
|
|
var element = (PasswordField)Model.Element;
|
|
var tagBuilder = (OrchardTagBuilder)TagBuilderExtensions.CreateElementTagBuilder(Model, "input");
|
|
|
|
tagBuilder.AddCssClass("text");
|
|
tagBuilder.Attributes["type"] = "password";
|
|
tagBuilder.Attributes["name"] = Model.ProcessedName;
|
|
tagBuilder.AddClientValidationAttributes((IDictionary<string, string>)Model.ClientValidationAttributes);
|
|
|
|
if (!ViewData.ModelState.IsValidField(element.Name)) {
|
|
tagBuilder.AddCssClass("input-validation-error");
|
|
}
|
|
}
|
|
|
|
@if (element.ShowLabel) {
|
|
<label for="@element.HtmlId">@Model.ProcessedLabel</label>
|
|
}
|
|
@tagBuilder.ToHtmlString(TagRenderMode.SelfClosing)
|
|
@if (element.ValidationSettings.ShowValidationMessage == true) {
|
|
@Html.ValidationMessage((string)Model.ProcessedName)
|
|
} |