From a83a0c10cfe94b9b86a8c17a37085b8705d784c8 Mon Sep 17 00:00:00 2001 From: Dorian Nemec Date: Wed, 12 Feb 2025 12:56:03 +0100 Subject: [PATCH] TD-29: Player Registration Form implemented --- src/app/registration-form/registration-form.component.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/registration-form/registration-form.component.ts b/src/app/registration-form/registration-form.component.ts index 58bf327..52dc0b4 100644 --- a/src/app/registration-form/registration-form.component.ts +++ b/src/app/registration-form/registration-form.component.ts @@ -23,7 +23,6 @@ export class RegistrationFormComponent { username: '', password: '', }); - //this.registrationForm.addValidators(isEmpty); } registerPlayer() { @@ -38,4 +37,6 @@ export class RegistrationFormComponent { }); } + + }