Adds steps logic for the register form.

This commit is contained in:
Dylan Sarrazyn
2024-01-31 16:56:35 +01:00
parent 9abb8499e2
commit e604c51ee9
60 changed files with 1972 additions and 1 deletions
@@ -0,0 +1,17 @@
@tool
extends Resource
class_name ValidatorRule
@export var fail_message: String = ""
func apply(control: Control, value) -> RuleResult:
return RuleResult.new()
func is_valid() -> bool:
return true
func get_invalid_message() -> String:
return ""