@model WebfrontCore.ViewModels.ActionInfo @{ Layout = null; }
@foreach (var input in Model.Inputs) {
@input.Label
@{ string inputType = input.Type ?? "text"; string value = input.Value ?? ""; if (inputType == "select") { } else if (inputType == "checkbox") {
} else { } }
}