mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
cbf8b23385
* Add XXL breakpoint * Unify setup guide display * Adapt desktop breakpoints in views * Fix POS code display * Fix syntax in home view * store settings + constrain update * account settings Co-authored-by: dstrukt <gfxdsign@gmail.com> Co-authored-by: Nicolas Dorier <nicolas.dorier@gmail.com>
24 lines
686 B
Plaintext
24 lines
686 B
Plaintext
@model HomeViewModel;
|
|
@{
|
|
ViewData["Title"] = "BTCPay Server";
|
|
}
|
|
|
|
<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>
|
|
}
|