mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 22:46:49 +01:00
* Improve and unify page headers * Altcoin test fixes * Update BTCPayServer/Views/Apps/UpdateCrowdfund.cshtml Co-authored-by: Andrew Camilleri <evilkukka@gmail.com> * Update BTCPayServer/Views/Apps/UpdateCrowdfund.cshtml Co-authored-by: Andrew Camilleri <evilkukka@gmail.com> * Fix missing store name in pairing view * Fix CanUsePairing test * Bump header navigation font size * Use partial tag instead of Html.PartialAsync in views As suggested by @nicolasdorier. These are equivalent, see details [here](https://docs.microsoft.com/en-us/aspnet/core/mvc/views/partial?view=aspnetcore-3.1#partial-tag-helper). * Fix docs link As in #2432. * Update BTCPayServer/Views/Wallets/SignWithSeed.cshtml Co-authored-by: britttttk <39231115+britttttk@users.noreply.github.com> * Update BTCPayServer/Views/Wallets/WalletSendVault.cshtml Co-authored-by: britttttk <39231115+britttttk@users.noreply.github.com> * Update BTCPayServer/Views/Wallets/WalletTransactions.cshtml Co-authored-by: britttttk <39231115+britttttk@users.noreply.github.com> Co-authored-by: Andrew Camilleri <evilkukka@gmail.com> Co-authored-by: britttttk <39231115+britttttk@users.noreply.github.com>
54 lines
2.9 KiB
Text
54 lines
2.9 KiB
Text
@model ChargeServiceViewModel
|
||
@{
|
||
ViewData.SetActivePageAndTitle(ServerNavPages.Services, "Lightning charge service");
|
||
}
|
||
|
||
<h2 class="mb-4">@ViewData["PageTitle"]</h2>
|
||
|
||
<div class="row">
|
||
<div class="col-md-8">
|
||
@if (!ViewContext.ModelState.IsValid)
|
||
{
|
||
<div asp-validation-summary="All" class="text-danger"></div>
|
||
}
|
||
<div class="form-group">
|
||
<p>Lightning charge is a simple API for invoicing on lightning network, you can use it with several plugins:</p>
|
||
<ul>
|
||
<li><a href="https://github.com/ElementsProject/woocommerce-gateway-lightning" target="_blank">WooCommerce Lightning Gateway</a>: A comprehensive e-commerce application that integrates with stock-management and order-tracking systems</li>
|
||
<li><a href="https://github.com/ElementsProject/nanopos" target="_blank">Nanopos</a>: A simple point-of-sale system for fixed-price goods</li>
|
||
<li><a href="https://github.com/ElementsProject/filebazaar" target="_blank">FileBazaar</a>: A system for selling files such as documents, images, and videos</li>
|
||
<li><a href="https://github.com/ElementsProject/wordpress-lightning-publisher" target="_blank">Lightning Publisher for WordPress</a>: A patronage model for unlocking WordPress blog entries</li>
|
||
<li><a href="https://github.com/ElementsProject/paypercall" target="_blank">Paypercall</a>: A programmer’s toolkit for Lightning that enables micropayments for individual API calls</li>
|
||
<li><a href="https://github.com/ElementsProject/ifpaytt" target="_blank">Ifpaytt</a>: An extension of paypercall that allows web developers using IFTTT to request payments for service usage</li>
|
||
<li><a href="https://github.com/ElementsProject/lightning-jukebox" target="_blank">Lightning Jukebox</a>: A fun demo that reimagines a classic technology for the Lightning Network</li>
|
||
<li><a href="https://github.com/ElementsProject/nanotip" target="_blank">Nanotip</a>: The simple tip jar, rebuilt to issue Lightning Network invoices</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="row">
|
||
<div class="col-md-8">
|
||
<h4>Credentials</h4>
|
||
@if (Model.Uri != null)
|
||
{
|
||
<div class="form-group">
|
||
<label asp-for="Uri"></label>
|
||
<input asp-for="Uri" readonly class="form-control" />
|
||
</div>
|
||
}
|
||
@if (Model.APIToken != null)
|
||
{
|
||
<div class="form-group">
|
||
<label asp-for="APIToken"></label>
|
||
<input asp-for="APIToken" readonly class="form-control" />
|
||
</div>
|
||
}
|
||
@if (Model.AuthenticatedUri != null)
|
||
{
|
||
<div class="form-group">
|
||
<label asp-for="AuthenticatedUri"></label>
|
||
<input asp-for="AuthenticatedUri" readonly class="form-control" />
|
||
</div>
|
||
}
|
||
</div>
|
||
</div>
|