@using Bit.SharedWeb.Utilities @model CreateProviderModel @{ ViewData["Title"] = "Create Provider"; } @section Scripts { }

Create Provider

@foreach(ProviderType providerType in Enum.GetValues(typeof(ProviderType))) { var providerTypeValue = (int)providerType;
@Html.RadioButtonFor(m => m.Type, providerType, new { id = $"providerType-{providerTypeValue}", @class = "form-check-input", onclick=$"toggleProviderTypeInfo({providerTypeValue})" }) @Html.LabelFor(m => m.Type, providerType.GetDisplayAttribute()?.GetName(), new { @class = "form-check-label align-middle", @for = $"providerType-{providerTypeValue}" })
@Html.LabelFor(m => m.Type, providerType.GetDisplayAttribute()?.GetDescription(), new { @class = "form-check-label small text-muted ml-3 align-top", @for = $"providerType-{providerTypeValue}" })
}

MSP Info

Reseller Info