btcpayserver/BTCPayServer/Views/UIError/_LayoutError.cshtml
d11n 4ae1046571
Server Settings: Customize instance name and add contact URL (#5718)
* Server Settings: Customize instance name and add contact URL

- The custom instance name would improve #5563
- Added contact URL closes #4806

* Fix custom logo display
2024-02-21 20:54:39 +01:00

25 lines
581 B
Text

@{
Layout = "_LayoutSimple";
}
<style>
.main-logo { height: 4.5rem; max-width: 18rem; }
.main-logo-btcpay .main-logo-btcpay--small { display: none; }
.lead img { max-width: 100%; }
</style>
<div class="text-center">
<a asp-controller="UIHome" asp-action="Index" class="d-inline-block navbar-brand mx-0 mb-5">
<vc:main-logo />
</a>
<h1 class="text-uppercase my-3">@ViewData["Title"]</h1>
<div class="lead text-center">
@RenderBody()
</div>
<hr class="primary my-5" />
<partial name="_BTCPaySupporters" />
</div>