Login form

This commit is contained in:
Eden Kirin
2024-02-05 23:27:44 +01:00
parent c0f161abe1
commit bc368641a8
10 changed files with 375 additions and 181 deletions

View File

@ -19,3 +19,12 @@ type ValidateFormContent struct {
HasNumValueError bool
NumValueError string
}
type LoginFormValidationContent struct {
Validated bool
Username string
UsernameError string
Password string
PasswordError string
LoginError string
}