mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 06:21:44 +01:00
* Add tag helper for sticky header Encapsulates some of the CSS and JS required and makes the usage easier. * Make sticky header span full content area horizontally * Use sticky header on remaining list views * Use sticky header on remaining edit and detail views * Adapt pull payments view to be consistent with other list views * Fix form markup * PSBT test fix * Update header actions * Remove sticky header tag helper
17 lines
1.6 KiB
Text
17 lines
1.6 KiB
Text
@inject SignInManager<ApplicationUser> SignInManager
|
|
|
|
<div class="sticky-header-setup"></div>
|
|
<div class="sticky-header mb-l">
|
|
<h2 class="mt-1 mb-2 mb-lg-4">Account Settings</h2>
|
|
<nav id="SectionNav">
|
|
<div class="nav">
|
|
<a id="SectionNav-@ManageNavPages.Index.ToString()" class="nav-link @ViewData.IsActivePage(ManageNavPages.Index)" asp-controller="UIManage" asp-action="Index">Account</a>
|
|
<a id="SectionNav-@ManageNavPages.ChangePassword.ToString()" class="nav-link @ViewData.IsActivePage(ManageNavPages.ChangePassword)" asp-controller="UIManage" asp-action="ChangePassword">Password</a>
|
|
<a id="SectionNav-@ManageNavPages.TwoFactorAuthentication.ToString()" class="nav-link @ViewData.IsActivePage(ManageNavPages.TwoFactorAuthentication)" asp-controller="UIManage" asp-action="TwoFactorAuthentication">Two-Factor Authentication</a>
|
|
<a id="SectionNav-@ManageNavPages.APIKeys.ToString()" class="nav-link @ViewData.IsActivePage(ManageNavPages.APIKeys)" asp-controller="UIManage" asp-action="APIKeys">API Keys</a>
|
|
<a id="SectionNav-@ManageNavPages.Notifications.ToString()" class="nav-link @ViewData.IsActivePage(ManageNavPages.Notifications)" asp-controller="UIManage" asp-action="NotificationSettings">Notifications</a>
|
|
<a id="SectionNav-@ManageNavPages.LoginCodes.ToString()" class="nav-link @ViewData.IsActivePage(ManageNavPages.LoginCodes)" asp-controller="UIManage" asp-action="LoginCodes">Login Codes</a>
|
|
<vc:ui-extension-point location="user-nav" model="@Model"/>
|
|
</div>
|
|
</nav>
|
|
</div>
|