mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 06:35:13 +01:00
* Unit test to check for (possibly) external links * Add rel="noreferrer noopener" to all external links so unit test passes * Update BTCPayServer.Tests/UnitTest1.cs Co-authored-by: Andrew Camilleri <evilkukka@gmail.com> * Update BTCPayServer.Tests/UnitTest1.cs Co-authored-by: Andrew Camilleri <evilkukka@gmail.com> * Fixed bad merge from master * PascalCasing Co-authored-by: Andrew Camilleri <evilkukka@gmail.com>
31 lines
929 B
Text
31 lines
929 B
Text
@model LightningWalletServices
|
|
@{
|
|
ViewData.SetActivePageAndTitle(ServerNavPages.Services, "BTCPay Server Configurator");
|
|
}
|
|
|
|
<h2 class="mb-4">@ViewData["Title"]</h2>
|
|
|
|
<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" rel="noreferrer noopener">
|
|
<label asp-for="ServiceLink" class="form-label">Service</label>
|
|
<input asp-for="ServiceLink" class="form-control" readonly />
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
@section PageFootContent {
|
|
<partial name="_ValidationScriptsPartial" />
|
|
}
|