@using LNURL @model Uri @{ ViewData.SetActivePage(ManageNavPages.TwoFactorAuthentication, "Register your Lightning node for LNURL Auth"); Dictionary formats = new Dictionary() { { "Bech32", LNURL.EncodeUri(Model, "login", true).ToString().ToUpperInvariant() }, { "URI", LNURL.EncodeUri(Model, "login", false).ToString().ToUpperInvariant() } }; }

@ViewData["Title"]

Scan the QR code with your Lightning wallet to link it to your user account.

@for (int i = 0; i < formats.Count; i++) { var mode = formats.ElementAt(i); }
@section PageFootContent { }