9 lines
152 B
Go
9 lines
152 B
Go
package form
|
|
|
|
const (
|
|
InputTypeText = "text"
|
|
InputTypePassword = "password"
|
|
InputTypeEmail = "email"
|
|
InputTypePhoneNumber = "tel"
|
|
)
|