btcpayserver/BTCPayServer/Views/UIHome/Home.cshtml

24 lines
686 B
Text
Raw Normal View History

2022-01-07 12:32:00 +09:00
@model HomeViewModel;
@{
ViewData["Title"] = "BTCPay Server";
2017-09-13 15:47:34 +09:00
}
2022-01-14 03:59:27 +01:00
<partial name="_StatusMessage" />
<h2>Welcome to your BTCPay Server</h2>
@if (!Model.HasStore)
{
<p class="lead text-secondary">To start accepting payments, set up a store.</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>
}