btcpayserver/BTCPayServer/Views/UIStores/SetupWallet.cshtml
d11n a962e60de9
More Translations (#6318)
* Store selector

* Footer

* Notifications

* Checkout Appearance

* Users list

* Forms

* Emails

* Pay Button

* Edit Dictionary

* Remove newlines, fix typos

* Forms

* Pull payments and payouts

* Various pages

* Use local docs link

* Fix

* Even more translations

* Fixes #6325

* Account pages

* Notifications

* Placeholders

* Various pages and components

* Add more
2024-10-25 22:48:53 +09:00

45 lines
1.8 KiB
Plaintext

@model WalletSetupViewModel
@inject Microsoft.Extensions.Localization.IStringLocalizer StringLocalizer
@{
Layout = "_LayoutWalletSetup";
var title = StringLocalizer["Setup {0} Wallet", Model.CryptoCode];
ViewData.SetActivePage(StoreNavPages.OnchainSettings, title, $"{Context.GetStoreData().Id}-{Model.CryptoCode}");
}
<h1 class="text-center" text-translate="true">Let's get started</h1>
<br>
<div class="mt-5">
<h3 class="my-4" text-translate="true">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 text-translate="true">Connect an existing wallet</h4>
<p class="mb-0 text-secondary" text-translate="true">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" text-translate="true">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 text-translate="true">Create a new wallet</h4>
<p class="mb-0 text-secondary" text-translate="true">Generate a brand-new wallet to use</p>
</div>
<vc:icon symbol="caret-right"/>
</a>
</div>
</div>