2020-01-21 10:27:10 +01:00
|
|
|
@model LightningWalletServices
|
|
|
|
@{
|
2021-04-08 15:32:42 +02:00
|
|
|
ViewData.SetActivePageAndTitle(ServerNavPages.Services, "BTCPay Server Configurator");
|
2020-01-21 10:27:10 +01:00
|
|
|
}
|
|
|
|
|
2021-04-08 15:32:42 +02:00
|
|
|
<h2 class="mb-4">@ViewData["Title"]</h2>
|
2020-01-21 10:27:10 +01:00
|
|
|
|
|
|
|
<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>
|
|
|
|
|
2021-06-06 13:44:54 +02:00
|
|
|
<a href="@Model.ServiceLink" target="_blank" class="form-group">
|
|
|
|
<label asp-for="ServiceLink" class="form-label">Service</label>
|
|
|
|
<input asp-for="ServiceLink" class="form-control" readonly />
|
|
|
|
</a>
|
2020-01-21 10:27:10 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2021-05-19 04:39:27 +02:00
|
|
|
@section PageFootContent {
|
2021-04-08 15:32:42 +02:00
|
|
|
<partial name="_ValidationScriptsPartial" />
|
2020-01-21 10:27:10 +01:00
|
|
|
}
|