38 lines
946 B
Plaintext
38 lines
946 B
Plaintext
@{
|
|
Layout = null;
|
|
}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>@ViewData["Title"]</title>
|
|
<partial name="_CommonHead"></partial>
|
|
@RenderSection("Meta", false)
|
|
<style>
|
|
body, section, .content-wrapper {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.account-form {
|
|
max-width: 35em;
|
|
margin: 0 auto var(--btcpay-space-xl);
|
|
padding: 2rem;
|
|
background: var(--btcpay-bg-tile);
|
|
border-radius: var(--btcpay-border-radius);
|
|
}
|
|
|
|
.account-form h4 {
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body class="d-flex flex-column min-vh-100">
|
|
<section class="content-wrapper flex-grow-1">
|
|
<div class="navbar-brand d-none"></div>
|
|
<vc:status-message></vc:status-message>
|
|
@RenderBody()
|
|
</section>
|
|
<script src="~/vendor/bootstrap/bootstrap.bundle.min.js" asp-append-version="true"></script>
|
|
</body>
|
|
</html>
|