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