@using BTCPayServer.Abstractions.Extensions @using BTCPayServer.Views.CustodianAccounts @using Microsoft.AspNetCore.Mvc.TagHelpers @model BTCPayServer.Models.CustodianAccountViewModels.CreateCustodianAccountViewModel @{ ViewData.SetActivePage( CustodianAccountsNavPages.Create, "Add a custodian account"); } @section PageFootContent { }

@ViewData["Title"]

@if (!ViewContext.ModelState.IsValid) {
} @if (!string.IsNullOrEmpty(Model.SelectedCustodian)) { } else if(Model.Custodians.Count() > 0) {
} else {

No custodians available. Install some plugins to add custodian / exchange support.

} @if (!string.IsNullOrEmpty(Model.SelectedCustodian)) {
} @if (Model.Custodians.Count() > 0) {
}