@model LightningWalletServices @{ ViewData.SetActivePageAndTitle(ServerNavPages.Services, Model.WalletName); }

@ViewData["PageTitle"]

@if (Model.ShowQR) { }
@if (!ViewContext.ModelState.IsValid) {
}
Browser connection

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

QR Code connection

You can use QR Code to connect to your @Model.WalletName from your mobile.

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