Split Bitcoin/LN to partial defined in payment handler and convert checkout to Vue (#996)

This commit is contained in:
Andrew Camilleri
2019-08-27 04:31:15 +02:00
committed by Nicolas Dorier
parent 55c0c0ea6f
commit 9a9e31c759
10 changed files with 596 additions and 766 deletions

View File

@@ -0,0 +1,12 @@
@model PaymentModel
<div>
<p>To complete payment, please send <b>@Model.BtcDue @Model.CryptoCode</b> to <b style="word-break: break-word;">@Model.BtcAddress</b></p>
<p>Time remaining: @Model.TimeLeft</p>
<p>
<a href="@Model.InvoiceBitcoinUrl" style="word-break: break-word;">@Model.InvoiceBitcoinUrl</a>
</p>
@if (Model.IsLightning)
{
<p>Peer Info: <b>@Model.PeerInfo</b></p>
}
</div>