AuthenticationType is now configurable from /Settings/System.

This commit is contained in:
Mark McDowall
2011-10-07 16:24:28 -07:00
parent f973c74c87
commit f627b551fc
3 changed files with 26 additions and 0 deletions
@@ -31,6 +31,11 @@
<span class="small">@Html.DescriptionFor(m => m.Port)</span>
</label>
@Html.TextBoxFor(m => m.Port, new { @class = "inputClass" })
<label class="labelClass">@Html.LabelFor(m => m.AuthenticationType)
<span class="small">@Html.DescriptionFor(m => m.AuthenticationType)</span>
</label>
@Html.DropDownListFor(m => m.AuthenticationType, Model.AuthTypeSelectList, new { @class = "inputClass" })
<button type="submit" id="save_button" disabled="disabled">Save</button>
}