Files
fiber-sessions/app/templates/types.go
Eden Kirin c0f161abe1 Initial
2024-02-05 22:30:11 +01:00

22 lines
345 B
Go

package templates
import "fiber-sessions/app/types"
type PageContext struct {
Title string
ActivePage string
User *types.User
}
type ValidateFormContent struct {
Validated bool
StrValue string
HasStrValueError bool
StrValueError string
NumValue string
HasNumValueError bool
NumValueError string
}