mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 22:34:56 +00:00
20 lines
409 B
Lua
20 lines
409 B
Lua
-- Form validation email rule
|
|
|
|
---@class ValidationRule
|
|
---@field type string
|
|
---@field pattern? string
|
|
---@field value? number | string
|
|
---@field message string
|
|
|
|
---@param message? string
|
|
---@return ValidationRule
|
|
local function email(message)
|
|
return {
|
|
type = "email",
|
|
pattern = "^[^@]+@[^@]+%.[^@]+$",
|
|
message = message or "Please enter a valid email"
|
|
}
|
|
end
|
|
|
|
return email
|