Frontend form handling done

This commit is contained in:
Leons Aleksandrovs
2025-07-05 21:11:09 +03:00
parent 58d53b17cb
commit a42e61fb48
22 changed files with 338 additions and 35 deletions
+13
View File
@@ -0,0 +1,13 @@
package models
type User struct {
ID int
email string
name string
password string
createdAt string
}
func Create(email string, name string, hash string) {
// TODO: Insert user into database
}