btcpayserver/BTCPayServer/Views/Error/404.cshtml

32 lines
1 KiB
Text
Raw Normal View History

2020-02-01 01:41:27 -06:00
@{
2020-07-19 01:20:12 +02:00
ViewData["Title"] = "404 - Page not found";
2020-02-01 01:41:27 -06:00
}
2020-07-19 01:20:12 +02:00
<div class="row justify-content-center mb-2">
<div class="col text-center">
<a asp-controller="Home" asp-action="Index">
<img src="~/img/btcpay-logo.svg" alt="BTCPay Server" class="mb-4" height="70" asp-append-version="true"/>
</a>
<h1 class="h2 mb-3">@ViewData["Title"]</h1>
</div>
</div>
<p class="lead text-center">
2020-02-01 11:16:40 -06:00
This is like searching for a person more beautiful than <a href="https://twitter.com/NicolasDorier" target="_blank">Nicolas Dorier</a>.
2020-02-01 01:41:27 -06:00
<br /><br />
<a href="https://twitter.com/NicolasDorier" target="_blank">
<img src="~/img/errorpages/404_nicolas.jpg" alt="Nicolas Dorier beauty" title="Slowly stroke the image" asp-append-version="true" />
2020-02-01 01:41:27 -06:00
</a>
<br /><br />
It doesn't exist.
<br /><br />
You can always try <a href="/">navigating back to home</a>.
</p>
2020-07-19 01:20:12 +02:00
<div class="row justify-content-center mt-5">
<div class="col">
<partial name="_BTCPaySupporters"/>
</div>
</div>