mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 14:40:36 +01:00
* add noindex,nofollow on invoices * fix create invoice button and add noindex,nofollow to checkout and invoice pages
123 lines
5.8 KiB
Text
123 lines
5.8 KiB
Text
@inject SignInManager<ApplicationUser> SignInManager
|
|
@inject UserManager<ApplicationUser> UserManager
|
|
@inject RoleManager<IdentityRole> RoleManager
|
|
@inject BTCPayServer.Services.BTCPayServerEnvironment env
|
|
@inject BTCPayServer.HostedServices.NBXplorerDashboard dashboard
|
|
@inject BTCPayServer.HostedServices.CssThemeManager themeManager
|
|
|
|
@addTagHelper *, Meziantou.AspNetCore.BundleTagHelpers
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
|
|
<title>BTCPay Server</title>
|
|
|
|
@* CSS *@
|
|
<link href="@this.Context.Request.GetAbsoluteUri(themeManager.BootstrapUri)" rel="stylesheet" />
|
|
<link href="@this.Context.Request.GetAbsoluteUri(themeManager.CreativeStartUri)" rel="stylesheet" />
|
|
|
|
<bundle name="wwwroot/bundles/main-bundle.min.css" />
|
|
|
|
@* JS *@
|
|
<bundle name="wwwroot/bundles/main-bundle.min.js" />
|
|
|
|
@RenderSection("HeadScripts", required: false)
|
|
@RenderSection("HeaderContent", false)
|
|
</head>
|
|
|
|
<body id="page-top">
|
|
|
|
@{
|
|
if (ViewBag.AlwaysShrinkNavBar == null)
|
|
{
|
|
ViewBag.AlwaysShrinkNavBar = true;
|
|
}
|
|
var additionalStyle = ViewBag.AlwaysShrinkNavBar ? "navbar-shrink always-shrinked" : "";
|
|
}
|
|
|
|
<!-- Navigation -->
|
|
<nav class='navbar navbar-expand-lg navbar-light fixed-top @additionalStyle' id="mainNav">
|
|
<div class="container">
|
|
<a class="navbar-brand js-scroll-trigger" href="~/">
|
|
<img src="~/img/logo.png" height="45">
|
|
@if (env.NetworkType != NBitcoin.NetworkType.Mainnet)
|
|
{
|
|
<span class="badge badge-warning" style="font-size:10px;">@env.NetworkType.ToString()</span>
|
|
}
|
|
</a>
|
|
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<div class="collapse navbar-collapse" id="navbarResponsive">
|
|
<ul class="navbar-nav ml-auto">
|
|
@if (SignInManager.IsSignedIn(User))
|
|
{
|
|
@if (User.IsInRole(Roles.ServerAdmin))
|
|
{
|
|
<li class="nav-item"><a asp-area="" asp-controller="Server" asp-action="ListUsers" class="nav-link js-scroll-trigger">Server settings</a></li>
|
|
}
|
|
<li class="nav-item"><a asp-area="" asp-controller="UserStores" asp-action="ListStores" class="nav-link js-scroll-trigger">Stores</a></li>
|
|
<li class="nav-item"><a asp-area="" asp-controller="Apps" asp-action="ListApps" class="nav-link js-scroll-trigger">Apps</a></li>
|
|
<li class="nav-item"><a asp-area="" asp-controller="Wallets" asp-action="ListWallets" class="nav-link js-scroll-trigger">Wallets</a></li>
|
|
<li class="nav-item"><a asp-area="" asp-controller="Invoice" asp-action="ListInvoices" class="nav-link js-scroll-trigger">Invoices</a></li>
|
|
<li class="nav-item">
|
|
<a asp-area="" asp-controller="Manage" asp-action="Index" title="Manage" class="nav-link js-scroll-trigger">My settings</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a asp-area="" asp-controller="Account" asp- asp-action="Logout" title="Manage" class="nav-link js-scroll-trigger">Log out</a>
|
|
</li>}
|
|
else
|
|
{
|
|
@if (themeManager.ShowRegister)
|
|
{
|
|
<li class="nav-item"><a asp-area="" asp-controller="Account" asp-action="Register" class="nav-link js-scroll-trigger">Register</a></li>
|
|
}
|
|
<li class="nav-item"><a asp-area="" asp-controller="Account" asp-action="Login" class="nav-link js-scroll-trigger">Log in</a></li>}
|
|
|
|
</ul>
|
|
</div>
|
|
<div id="badUrl" class="alert alert-danger alert-dismissible" style="display:none; position:absolute; top:75px;" role="alert">
|
|
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>
|
|
<span>BTCPay is expecting you to access this website from <b>@(env.ExpectedProtocol)://@(env.ExpectedHost)/</b>. If you want to change this expectation:</span>
|
|
<ul>
|
|
<li>Either starts BTCPay with <b>--externalurl @(env.ExpectedProtocol)://@(env.ExpectedHost)/</b></li>
|
|
<li>Or, if using docker-compose deployment, setting environment variable <b>BTCPAY_PROTOCOL=@(env.ExpectedProtocol)</b> and <b>BTCPAY_HOST=@(env.ExpectedDomain)</b></li>
|
|
</ul>
|
|
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
|
|
@RenderBody()
|
|
|
|
@if (User.Identity.IsAuthenticated)
|
|
{
|
|
<footer class="siteFooter bg-dark text-white">
|
|
<div class="container text-right">@env.ToString()</div>
|
|
</footer>
|
|
}
|
|
|
|
@if (!dashboard.IsFullySynched())
|
|
{
|
|
<partial name="SyncModal" />
|
|
}
|
|
|
|
@RenderSection("Scripts", required: false)
|
|
|
|
<script type="text/javascript">
|
|
var expectedDomain = @Html.Raw(Json.Serialize(env.ExpectedHost));
|
|
var expectedProtocol = @Html.Raw(Json.Serialize(env.ExpectedProtocol));
|
|
if (window.location.host != expectedDomain || window.location.protocol != expectedProtocol + ":") {
|
|
document.getElementById("badUrl").style.display = "block";
|
|
}
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|