mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 02:28:31 +01:00
34 lines
879 B
Plaintext
34 lines
879 B
Plaintext
@model LightningWalletServices
|
|
@{
|
|
ViewData.SetActivePageAndTitle(ServerNavPages.Services);
|
|
}
|
|
|
|
<h4>BTCPay Server Configurator</h4>
|
|
<partial name="_StatusMessage" />
|
|
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<div asp-validation-summary="All" class="text-danger"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-md-8">
|
|
<div class="form-group">
|
|
<p>
|
|
<span>This page exposes information to use the configured BTCPay Server Configurator to modify this setup.</span>
|
|
</p>
|
|
</div>
|
|
|
|
<a href="@Model.ServiceLink" target="_blank" class="form-group">
|
|
<label>Service</label>
|
|
<input asp-for="ServiceLink" readonly class="form-control" />
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
@section Scripts {
|
|
@await Html.PartialAsync("_ValidationScriptsPartial")
|
|
|
|
}
|