first commit
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
import { v } from "@wrnexus/validation";
|
||||
|
||||
export default v.object({
|
||||
"advanced-select-27": v.string().required("A team selection is required."),
|
||||
});
|
||||
@@ -0,0 +1,5 @@
|
||||
import { v } from "@wrnexus/validation";
|
||||
|
||||
export default v.object({
|
||||
"advanced-select-26": v.string().required("Choose at least one available team."),
|
||||
});
|
||||
@@ -0,0 +1,5 @@
|
||||
import { v } from "@wrnexus/validation";
|
||||
|
||||
export default v.object({
|
||||
"combobox-15": v.string().required("Choose a valid team from the suggestions."),
|
||||
});
|
||||
@@ -0,0 +1,8 @@
|
||||
import { v } from "@wrnexus/validation";
|
||||
|
||||
export default v.object({
|
||||
"pin-input-10": v
|
||||
.string()
|
||||
.required("Enter your six-digit verification code.")
|
||||
.length(6, "The verification code must contain six digits."),
|
||||
});
|
||||
@@ -0,0 +1,8 @@
|
||||
import { v } from "@wrnexus/validation";
|
||||
|
||||
export default v.object({
|
||||
"toggle-password-6": v
|
||||
.string()
|
||||
.required("Enter your password.")
|
||||
.min(8, "Your password must contain at least eight characters."),
|
||||
});
|
||||
Reference in New Issue
Block a user