mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-10 17:26:05 +01:00
* 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
37 lines
1.3 KiB
Text
37 lines
1.3 KiB
Text
@model WalletSetupViewModel
|
|
@{
|
|
Layout = "_LayoutWalletSetup";
|
|
ViewData.SetActivePage(StoreNavPages.OnchainSettings, StringLocalizer["Enter the wallet seed"], $"{Context.GetStoreData().Id}-{Model.CryptoCode}");
|
|
}
|
|
|
|
@section Navbar {
|
|
<a asp-controller="UIStores" asp-action="ImportWallet" asp-route-storeId="@Model.StoreId" asp-route-cryptoCode="@Model.CryptoCode" asp-route-method="">
|
|
<vc:icon symbol="back" />
|
|
</a>
|
|
}
|
|
|
|
<header class="text-center">
|
|
<h1>@ViewData["Title"]</h1>
|
|
<p class="lead text-secondary mt-3" text-translate="true">Manually enter your 12 or 24 word recovery seed.</p>
|
|
</header>
|
|
|
|
<div class="my-5">
|
|
@if (Model.CanUseHotWallet)
|
|
{
|
|
ViewData.Add(nameof(Model.CanUseHotWallet), Model.CanUseHotWallet);
|
|
ViewData.Add(nameof(Model.CanUseRPCImport), Model.CanUseRPCImport);
|
|
ViewData.Add(nameof(Model.SupportSegwit), Model.SupportSegwit);
|
|
ViewData.Add(nameof(Model.SupportTaproot), Model.SupportTaproot);
|
|
ViewData.Add(nameof(Model.Method), Model.Method);
|
|
|
|
<partial name="_GenerateWalletForm" model="Model.SetupRequest" />
|
|
}
|
|
else
|
|
{
|
|
<p class="mb-0" text-translate="true">Please note that creating a wallet is not supported by your instance.</p>
|
|
}
|
|
</div>
|
|
|
|
@section PageFootContent {
|
|
<partial name="_ValidationScriptsPartial" />
|
|
}
|