feat: add Input and RegistrationForm models

This commit is contained in:
Prad Nukala
2024-10-01 14:43:25 -04:00
parent ece8d85074
commit de9b4bf72f
9 changed files with 34 additions and 151 deletions
+18
View File
@@ -0,0 +1,18 @@
// Code generated from Pkl module `models`. DO NOT EDIT.
package models
type Input struct {
Label string `pkl:"label"`
Type string `pkl:"type"`
Placeholder string `pkl:"placeholder"`
Value *string `pkl:"value"`
Error *string `pkl:"error"`
Help *string `pkl:"help"`
Required bool `pkl:"required"`
}