From 799fc34f90b1606d3e7f86a2fa741eec691e0b54 Mon Sep 17 00:00:00 2001 From: Aldair Avelino Date: Thu, 30 May 2024 12:28:56 +0100 Subject: [PATCH 1/6] Organize sign up page and with it routing - AA --- .../sign-up/sign-up.component.html | 66 ++++++++++++++++++- .../sign-up/sign-up.component.ts | 6 +- 2 files changed, 69 insertions(+), 3 deletions(-) diff --git a/src/app/components/authentication/sign-up/sign-up.component.html b/src/app/components/authentication/sign-up/sign-up.component.html index 7e8b79f..4c1c88a 100644 --- a/src/app/components/authentication/sign-up/sign-up.component.html +++ b/src/app/components/authentication/sign-up/sign-up.component.html @@ -1 +1,65 @@ -

sign-up works!

+
+ + + +
+ +
+ +
+

Create a free account

+

with your personal information

+
+ +
+ +
+
+ + +
+ +
+ + +
+ +
+ + +
+ + +
+ +

Have an account? Login now +

+ +
+
+ +
\ No newline at end of file diff --git a/src/app/components/authentication/sign-up/sign-up.component.ts b/src/app/components/authentication/sign-up/sign-up.component.ts index 49f2f01..84eec15 100644 --- a/src/app/components/authentication/sign-up/sign-up.component.ts +++ b/src/app/components/authentication/sign-up/sign-up.component.ts @@ -1,12 +1,14 @@ import { Component } from '@angular/core'; +import { RouterLink } from '@angular/router'; @Component({ selector: 'app-sign-up', standalone: true, - imports: [], + imports: [RouterLink], templateUrl: './sign-up.component.html', styleUrl: './sign-up.component.css' }) export class SignUpComponent { - + imageSignUpURL: string = "assets/auth/register.jpg"; + vectorIconSignUp: string = "assets/auth/login-vector.png"; } From b45ec7c1d2b22c947d1b765053cf7c447af18d13 Mon Sep 17 00:00:00 2001 From: Aldair Avelino Date: Thu, 30 May 2024 12:40:12 +0100 Subject: [PATCH 2/6] Organize recover account page - AA --- .../recover-account.component.html | 48 ++++++++++++++++++- .../recover-account.component.ts | 3 +- 2 files changed, 49 insertions(+), 2 deletions(-) diff --git a/src/app/components/authentication/recover-account/recover-account.component.html b/src/app/components/authentication/recover-account/recover-account.component.html index dd76458..6cb9bae 100644 --- a/src/app/components/authentication/recover-account/recover-account.component.html +++ b/src/app/components/authentication/recover-account/recover-account.component.html @@ -1 +1,47 @@ -

recover-account works!

+
+ + + +
+ +
+ +
+

Recover Account Password

+

fill with your E-mail Address

+
+ +
+ +
+
+ + +
+ + +
+ +
+
+ +
\ No newline at end of file diff --git a/src/app/components/authentication/recover-account/recover-account.component.ts b/src/app/components/authentication/recover-account/recover-account.component.ts index 2c14e3a..64f740d 100644 --- a/src/app/components/authentication/recover-account/recover-account.component.ts +++ b/src/app/components/authentication/recover-account/recover-account.component.ts @@ -8,5 +8,6 @@ import { Component } from '@angular/core'; styleUrl: './recover-account.component.css' }) export class RecoverAccountComponent { - + imageRecoverURL: string = "assets/auth/recover.jpg"; + vectorIconRecover: string = "assets/auth/login-vector.png" } From 87f56ad490b18bfd2ab10435403d92813b342280 Mon Sep 17 00:00:00 2001 From: Aldair Avelino Date: Thu, 30 May 2024 12:53:35 +0100 Subject: [PATCH 3/6] Inline CTA - AA --- .../recover-account/recover-account.component.html | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/app/components/authentication/recover-account/recover-account.component.html b/src/app/components/authentication/recover-account/recover-account.component.html index 6cb9bae..1c20735 100644 --- a/src/app/components/authentication/recover-account/recover-account.component.html +++ b/src/app/components/authentication/recover-account/recover-account.component.html @@ -41,6 +41,14 @@

Recover Account Pa px-4 py-3 mt-6">Recover Account +
+ + Remembered password? Login + + +
+ From 0ed7fdc5b51179ee3cd835266bc3a08a5e72bf13 Mon Sep 17 00:00:00 2001 From: Aldair Avelino Date: Thu, 30 May 2024 12:53:57 +0100 Subject: [PATCH 4/6] Add routing - AA --- .../recover-account/recover-account.component.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/components/authentication/recover-account/recover-account.component.ts b/src/app/components/authentication/recover-account/recover-account.component.ts index 64f740d..160a759 100644 --- a/src/app/components/authentication/recover-account/recover-account.component.ts +++ b/src/app/components/authentication/recover-account/recover-account.component.ts @@ -1,9 +1,10 @@ import { Component } from '@angular/core'; +import { RouterLink } from '@angular/router'; @Component({ selector: 'app-recover-account', standalone: true, - imports: [], + imports: [RouterLink], templateUrl: './recover-account.component.html', styleUrl: './recover-account.component.css' }) From ad36261ca4b0876d9c8e89cdadf481610e0a3730 Mon Sep 17 00:00:00 2001 From: Aldair Avelino Date: Thu, 30 May 2024 12:57:12 +0100 Subject: [PATCH 5/6] Organize CTA - AA --- .../authentication/login/login.component.html | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/src/app/components/authentication/login/login.component.html b/src/app/components/authentication/login/login.component.html index afcd664..84abc45 100644 --- a/src/app/components/authentication/login/login.component.html +++ b/src/app/components/authentication/login/login.component.html @@ -45,7 +45,8 @@

Log in to your acc @@ -55,15 +56,13 @@

Log in to your acc
- Still not a Player? + Still not a Player? Register Now +
-

Join Us Today! Create - Account

- - + \ No newline at end of file From c604c0b75b20fb61c37034d30c352c9b17c947d3 Mon Sep 17 00:00:00 2001 From: Aldair Avelino Date: Thu, 30 May 2024 13:01:51 +0100 Subject: [PATCH 6/6] Organize CTA - AA --- .../authentication/login/login.component.html | 2 +- .../recover-account/recover-account.component.html | 2 +- .../authentication/sign-up/sign-up.component.html | 10 +++++++--- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/src/app/components/authentication/login/login.component.html b/src/app/components/authentication/login/login.component.html index 84abc45..a9f4840 100644 --- a/src/app/components/authentication/login/login.component.html +++ b/src/app/components/authentication/login/login.component.html @@ -56,7 +56,7 @@

Log in to your acc
- Still not a Player? Still not a Player? Register Now diff --git a/src/app/components/authentication/recover-account/recover-account.component.html b/src/app/components/authentication/recover-account/recover-account.component.html index 1c20735..316ab94 100644 --- a/src/app/components/authentication/recover-account/recover-account.component.html +++ b/src/app/components/authentication/recover-account/recover-account.component.html @@ -43,7 +43,7 @@

Recover Account Pa
- Remembered password? Remembered password? Login diff --git a/src/app/components/authentication/sign-up/sign-up.component.html b/src/app/components/authentication/sign-up/sign-up.component.html index 4c1c88a..7be5fb5 100644 --- a/src/app/components/authentication/sign-up/sign-up.component.html +++ b/src/app/components/authentication/sign-up/sign-up.component.html @@ -55,9 +55,13 @@

Create a free acco px-4 py-3 mt-8">Create Account -

Have an account? Login now -

+
+ + Already a player? Login Now + + +