tempalte profile
This commit is contained in:
parent
137b9f9a6a
commit
7f3bfb7d59
5 changed files with 189 additions and 8 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue