2019-11-05 17:02:43 +09:00
@model LoginViewModel
@{
Layout = null;
}
2019-11-06 23:58:04 +09:00
@inject BTCPayServer.Services.BTCPayServerEnvironment env
2019-11-05 17:02:43 +09:00
<!DOCTYPE html>
<html lang="en">
<head>
2019-11-06 12:19:06 +09:00
<partial name="Header" />
2019-11-06 21:57:43 +09:00
<link href="~/main/css/Montserrat.css" rel="stylesheet">
2019-11-05 17:02:43 +09:00
<style>
2019-11-06 21:57:43 +09:00
2019-11-06 21:51:10 +09:00
.col-head {
display: flex;
align-items: center;
}
2019-11-06 21:57:43 +09:00
2019-11-06 21:51:10 +09:00
.head-logo {
height: 100px;
margin-right: 50px;
}
2019-11-05 17:02:43 +09:00
.lead-title {
font-family: Montserrat;
font-style: normal;
2019-11-06 21:51:10 +09:00
font-weight: bold;
2019-11-05 17:02:43 +09:00
font-size: 40px;
2019-11-06 21:51:10 +09:00
line-height: 1.2;
2019-11-05 17:02:43 +09:00
/* or 150% */
letter-spacing: 0.1em;
color: #000000;
}
.lead-login {
font-family: Montserrat;
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 33px;
/* or 183% */
letter-spacing: 0.1em;
color: #000000;
}
.lead-h {
font-family: Montserrat;
font-style: normal;
margin-bottom: 30px;
font-weight: 600;
font-size: 14px;
line-height: 18px;
/* identical to box height, or 129% */
letter-spacing: 0.1em;
text-transform: uppercase;
color: #000000;
}
</style>
</head>
<body class="bg-light">
<section>
<!-- Dummy navbar-brand, hackish way to keep test AssertNoError passing -->
<div class="navbar-brand" style="display:none;"></div>
<div class="container">
<div class="row">
2019-11-06 21:51:10 +09:00
<div class="col-12 col-head">
<a asp-controller="Home" asp-action="Index"><img src="~/img/btcpay-logo.svg" alt="BTCPay Server" class="head-logo" /></a>
2019-11-05 17:02:43 +09:00
<h1 class="lead-title text-uppercase">Welcome to your BTCPay Server</h1>
2019-11-06 21:51:10 +09:00
</div>
</div>
<div class="row">
<div class="col-md-7 order-md-1 order-2">
<hr class="primary ml-0" style="margin:30px auto;">
2019-11-05 17:02:43 +09:00
<p class="lead-login" style="margin-bottom:69px;">BTCPay Server lets you process Bitcoin transactions seemlessly, enabling global and near-instant peer-to-peer payments</p>
<h3 class="lead-h">Our supporters</h3>
<div class="figure">
<a href="https://twitter.com/sqcrypto" target="_blank">
<img src="~/img/squarecrypto.svg" alt="Sponsor Square Crypto" height="100" />
</a>
<div class="figure-caption text-center">
<a href="https://twitter.com/sqcrypto" target="_blank">Square Crypto</a>
</div>
</div>
</div>
2019-11-06 21:51:10 +09:00
<div class="col-md-5 order-md-2 order-1">
2019-11-05 17:02:43 +09:00
@RenderBody()
2019-11-06 23:58:04 +09:00
@if (env.OnionUrl != null)
{
<div class="input-group form-group">
<div class="input-group-prepend">
<a href="@env.OnionUrl" class="input-group-text"><span class="input-group-addon"></span><img style="display:inline" src="~/img/icons/Onion_Color.svg" height="20" /></a>
</div>
<input class="form-control" type="text" style="font-size:0.75em;" value="@env.OnionUrl" readonly>
</div>
}
2019-11-05 17:02:43 +09:00
</div>
</div>
</div>
2019-11-06 23:58:04 +09:00
</section>
2019-11-05 17:02:43 +09:00
@await Html.PartialAsync("_ValidationScriptsPartial")
</body>
</html>