tempalte profile

This commit is contained in:
JACS 2026-05-03 01:29:32 -05:00
parent 137b9f9a6a
commit 7f3bfb7d59
5 changed files with 189 additions and 8 deletions

View file

@ -481,6 +481,25 @@ type FormtablerComponentsPage struct {
Toasts []FormtablerToast
}
// FormtablerUserSettingsSection represents a section in the settings sidebar.
type FormtablerUserSettingsSection struct {
Title string
SubItems []FormtablerUserSettingsNavItem
}
// FormtablerUserSettingsNavItem represents a single navigation item in the settings sidebar.
type FormtablerUserSettingsNavItem struct {
Title string
Link string
Active bool
}
// FormtablerUserSettingsPage holds the data for the user settings page.
type FormtablerUserSettingsPage struct {
SidebarSections []FormtablerUserSettingsSection
ActiveTab string
}
// AuthLockPageData holds the data for the account lock page.
type AuthLockPageData struct {
PersonName string