mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-08 19:32:10 +01:00
62 lines
1.6 KiB
Text
62 lines
1.6 KiB
Text
@model HomeViewModel;
|
|
@{
|
|
ViewData["Title"] = "BTCPay Server";
|
|
}
|
|
|
|
@section PageHeadContent
|
|
{
|
|
<style>
|
|
.list-group-item .image {
|
|
display: flex;
|
|
flex: 0 0 1rem;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.list-group-item .icon {
|
|
width: 1.5rem;
|
|
height: 1.5rem;
|
|
margin: 1rem;
|
|
}
|
|
|
|
.list-group-item .content {
|
|
flex: 1;
|
|
padding: 1rem 0;
|
|
}
|
|
|
|
#NotificationsRecent .notification {
|
|
padding: var(--btcpay-space-s) var(--btcpay-space-m) !important;
|
|
}
|
|
</style>
|
|
}
|
|
|
|
<partial name="_StatusMessage" />
|
|
|
|
<h2>Welcome to your BTCPay Server</h2>
|
|
|
|
@if (Model.HasStore)
|
|
{
|
|
<div class="row">
|
|
<div class="col-lg-8 col-xl-6 pt-3">
|
|
<vc:notifications appearance="Recent" />
|
|
</div>
|
|
</div>
|
|
}
|
|
else
|
|
{
|
|
<div class="row">
|
|
<div class="col-lg-9 col-xl-6">
|
|
<p class="lead text-secondary">To start accepting payments, set up a store and a wallet.</p>
|
|
|
|
<div class="list-group mt-4" id="SetupGuide">
|
|
<a asp-controller="UIUserStores" asp-action="CreateStore" id="SetupGuide-Store" class="list-group-item list-group-item-action d-flex align-items-center">
|
|
<vc:icon symbol="new-store"/>
|
|
<div class="content">
|
|
<h5 class="mb-0">Create your store</h5>
|
|
</div>
|
|
<vc:icon symbol="caret-right"/>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
}
|