Files
Kalulu/sources/menus/register/steps/credentials_step.gd
T
2024-02-20 16:08:30 +01:00

14 lines
293 B
GDScript

extends Step
@onready var password := %password
@onready var password_confirm := %password_confirm
func _on_validate_button_pressed():
if password.text != password_confirm.text:
print("Make sure the password is the same in both fields")
return
super._on_validate_button_pressed()