@using BTCPayServer.Controllers @using BTCPayServer.TagHelpers @using Microsoft.AspNetCore.Mvc.TagHelpers @model WalletSendVaultModel @{ var walletId = Context.GetRouteValue("walletId").ToString(); var cancelUrl = Model.ReturnUrl ?? Url.Action(nameof(UIWalletsController.WalletTransactions), new { walletId }); var backUrl = Model.BackUrl != null ? $"{Model.BackUrl}?returnUrl={Model.ReturnUrl}" : null; Layout = "_LayoutWizard"; ViewData.SetActivePage(WalletsNavPages.Send, "Sign the transaction", walletId); } @section Navbar { @if (backUrl != null) { } }

@ViewData["Title"]

Using BTCPay Server Vault

@section PageFootContent { }