Added ability to create projects

This commit is contained in:
2023-11-28 16:36:11 -05:00
parent bae65994f8
commit 16704aeeb1
9 changed files with 80 additions and 19 deletions

6
web/forms/project.go Normal file
View File

@ -0,0 +1,6 @@
package forms
type ProjectForm struct {
Name string `form:"project_name" validate:"required"`
Description string `form:"project_description"`
}