diff --git a/src/app/components/authentication/login/login.component.html b/src/app/components/authentication/login/login.component.html index afcd664..a9f4840 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
- Oops! I forgot + Oops! I forgot my password
@@ -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 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..316ab94 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,55 @@ -

recover-account works!

+
+ + + +
+ +
+ +
+

Recover Account Password

+

fill with your E-mail Address

+
+ +
+ +
+
+ + +
+ + +
+ +
+ + Remembered password? Login + + +
+ +
+
+ +
\ 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..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,12 +1,14 @@ 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' }) export class RecoverAccountComponent { - + imageRecoverURL: string = "assets/auth/recover.jpg"; + vectorIconRecover: string = "assets/auth/login-vector.png" } 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..7be5fb5 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,69 @@ -

sign-up works!

+
+ + + +
+ +
+ +
+

Create a free account

+

with your personal information

+
+ +
+ +
+
+ + +
+ +
+ + +
+ +
+ + +
+ + +
+ +
+ + Already a player? 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"; }