package templates import "git.jmbit.de/jmb/goipam/db" templ ProfilePage(metaContent MetaContent, title string, user *db.User, err error) { @wrapBase(metaContent, title, err) { @profileMain(user) } } templ profileMain(user *db.User) {
@ProfileStatic(user)
} templ ProfileStatic(user *db.User) {
{ user.Name }
{ user.DisplayName }
{ user.Email }
} templ ProfileForm(user *db.User) {
{ user.Name }
} templ PasswordForm(success bool, message string) {
}