@model LightningWalletServices @{ ViewData.SetLayoutModel(new LayoutModel(nameof(ServerNavPages.Services), Model.WalletName) .SetCategory(WellKnownCategories.Server)); ViewData.SetBreadcrumbs([new(StringLocalizer["Services"], Action: nameof(BTCPayServer.Controllers.UIServerController.Services))]); } @if (Model.ShowQR) { }
@if (!ViewContext.ModelState.IsValid) {
}
Browser connection

You can go to @Model.WalletName from your browser by clicking here

QR Code connection

@StringLocalizer["You can use QR Code to connect to your {0} from your mobile.", Model.WalletName]

@if (!Model.ShowQR) {
} else {
}
@section PageFootContent { @if (Model.ShowQR) { } }