mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 02:28:31 +01:00
Removes lightning setup & wallet setup back button (#2628)
* removes back button * removes wallet back on setupwallet page * removes navbar section completely * remove back button on modify wallet page Co-authored-by: Dennis Reimann <mail@dennisreimann.de>
This commit is contained in:
parent
cb2dd464f1
commit
631deb9ce7
@ -4,12 +4,6 @@
|
||||
ViewData.SetActivePageAndTitle(StoreNavPages.Wallet, $"Modify {Model.CryptoCode} Wallet");
|
||||
}
|
||||
|
||||
@section Navbar {
|
||||
<a asp-controller="Stores" asp-action="UpdateStore" asp-route-storeId="@Model.StoreId">
|
||||
<vc:icon symbol="back" />
|
||||
</a>
|
||||
}
|
||||
|
||||
<header class="text-center">
|
||||
<h1>@ViewData["Title"]</h1>
|
||||
<p class="lead text-secondary mt-3">Change your current wallet settings</p>
|
||||
|
@ -4,12 +4,6 @@
|
||||
ViewData.SetActivePageAndTitle(StoreNavPages.Index, "Connect to a Lightning node", Context.GetStoreData().StoreName);
|
||||
}
|
||||
|
||||
@section Navbar {
|
||||
<a asp-controller="Stores" asp-action="UpdateStore" asp-route-storeId="@Model.StoreId">
|
||||
<vc:icon symbol="back" />
|
||||
</a>
|
||||
}
|
||||
|
||||
<header class="text-center">
|
||||
<h1>@ViewData["Title"]</h1>
|
||||
<div class="d-flex mt-4 mb-5">
|
||||
|
@ -4,18 +4,6 @@
|
||||
ViewData.SetActivePageAndTitle(StoreNavPages.Wallet, $"Setup {Model.CryptoCode} Wallet", Context.GetStoreData().StoreName);
|
||||
}
|
||||
|
||||
@section Navbar {
|
||||
@if (string.IsNullOrWhiteSpace(Model.DerivationScheme)) {
|
||||
<a asp-controller="Stores" asp-action="UpdateStore" asp-route-storeId="@Model.StoreId">
|
||||
<vc:icon symbol="back"/>
|
||||
</a>
|
||||
} else {
|
||||
<a asp-controller="Stores" asp-action="ModifyWallet" asp-route-storeId="@Model.StoreId" asp-route-cryptoCode="@Model.CryptoCode">
|
||||
<vc:icon symbol="back"/>
|
||||
</a>
|
||||
}
|
||||
}
|
||||
|
||||
<h1 class="text-center">Let's get started</h1>
|
||||
<br>
|
||||
<div class="mt-5">
|
||||
|
Loading…
Reference in New Issue
Block a user