mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-24 06:47:50 +01:00
* UI: Move section navigation to sidebar * Scroll active nav link into view * Move CTAs to top right * Server Settings: Make Policies first page * Responsive table fixes * Spacing fixes * Add breadcrumb samples * store settings fixes * payment request fixes * updates pull payment title * adds invoice detail fix * updates server settings breadcrumbs + copy fix * Don't open Server Settings on Plugins page * Add breadcrumbs to pull payment views * adds breadcrumbs to account * server and store breadcrumb fixes * fixes access tokens * Fix payment processor breadcrumbs * fixes webhook 404 * Final touches * Fix test * Add breadcrumb for email rules page * Design system updates --------- Co-authored-by: dstrukt <gfxdsign@gmail.com>
40 lines
1.6 KiB
Text
40 lines
1.6 KiB
Text
@model WalletSetupViewModel
|
|
@{
|
|
Layout = "_LayoutWalletSetup";
|
|
ViewData.SetActivePage(StoreNavPages.OnchainSettings, $"Setup {Model.CryptoCode} Wallet", $"{Context.GetStoreData().Id}-{Model.CryptoCode}");
|
|
}
|
|
|
|
<h1 class="text-center">Let's get started</h1>
|
|
<br>
|
|
<div class="mt-5">
|
|
<h3 class="my-4">I have a wallet</h3>
|
|
<div class="list-group">
|
|
<a asp-controller="UIStores" asp-action="ImportWallet" asp-route-storeId="@Model.StoreId" asp-route-cryptoCode="@Model.CryptoCode" id="ImportWalletOptionsLink" class="list-group-item list-group-item-action">
|
|
<div class="image">
|
|
<vc:icon symbol="wallet-existing"/>
|
|
</div>
|
|
<div class="content">
|
|
<h4>Connect an existing wallet</h4>
|
|
<p class="mb-0 text-secondary">Import an existing hardware or software wallet</p>
|
|
</div>
|
|
<vc:icon symbol="caret-right" />
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
<br>
|
|
<div class="mt-5">
|
|
<h3 class="my-4">I don't have a wallet</h3>
|
|
<div class="list-group">
|
|
<a asp-controller="UIStores" asp-action="GenerateWallet" asp-route-storeId="@Model.StoreId" asp-route-cryptoCode="@Model.CryptoCode" id="GenerateWalletLink" class="list-group-item list-group-item-action">
|
|
<div class="image">
|
|
<vc:icon symbol="wallet-new"/>
|
|
</div>
|
|
<div class="content">
|
|
<h4>Create a new wallet</h4>
|
|
<p class="mb-0 text-secondary">Generate a brand-new wallet to use</p>
|
|
</div>
|
|
<vc:icon symbol="caret-right"/>
|
|
</a>
|
|
</div>
|
|
</div>
|