Added hardware routes and views

This commit is contained in:
2023-12-02 22:37:46 -05:00
parent c5df026d04
commit 4ad9a92306
7 changed files with 144 additions and 1 deletions

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

@ -0,0 +1,6 @@
package forms
type HardwareForm struct {
Name string `form:"hardware_name" validate:"required"`
Type string `form:"hardware_type" validate:"required"`
}