From 31675ff4776a05482c9b05cab48fcb3cd269af16 Mon Sep 17 00:00:00 2001 From: Aldair Avelino Date: Thu, 30 May 2024 09:57:18 +0100 Subject: [PATCH 1/3] Add custom colors and set Poppins as default font family - AA --- tailwind.config.js | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/tailwind.config.js b/tailwind.config.js index 1b21aff..3c2504c 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -8,7 +8,21 @@ module.exports = { gayathri: ['Gayathri'], poppins: ['Poppins'] }, - extend: {}, + extend: { + colors: { + 'BrightCyan': '#00DAF7', + 'CoolGrey': '#8692A6', + 'SlateGray': '#696F79', + 'LightGray': '#BABABA', + 'OffWhite': '#FBF9F9', + 'UserProgressBar': '#F5F5F5', + 'NavyGray': '#C4C4C4', + 'DropShadow': '#EDEDED' + }, + fontFamily: { + 'sans': ['Poppins'] + } + }, }, plugins: [], } From 77deec0995b026789ea30f0bd65803b616f3518a Mon Sep 17 00:00:00 2001 From: Aldair Avelino Date: Thu, 30 May 2024 10:26:37 +0100 Subject: [PATCH 2/3] Organize left side of login - AA --- src/app/components/authentication/login/login.component.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/components/authentication/login/login.component.html b/src/app/components/authentication/login/login.component.html index ed45e1a..9693a3e 100644 --- a/src/app/components/authentication/login/login.component.html +++ b/src/app/components/authentication/login/login.component.html @@ -7,8 +7,8 @@ style="background-image: url({{imageLoginURL}});">
-
-
In the realm of quiz games, those who adeptly +
+
In the realm of quiz games, those who adeptly tackle challenges and consistently seek innovative solutions will emerge as the true champions of tomorrow
Jason Medina
From fc3133a83b4dec507bad360edd91f1d346701b62 Mon Sep 17 00:00:00 2001 From: Aldair Avelino Date: Thu, 30 May 2024 11:09:06 +0100 Subject: [PATCH 3/3] Organize right side of login and add routing - AA --- .../authentication/login/login.component.html | 27 ++++++++++--------- .../authentication/login/login.component.ts | 3 ++- 2 files changed, 16 insertions(+), 14 deletions(-) diff --git a/src/app/components/authentication/login/login.component.html b/src/app/components/authentication/login/login.component.html index 9693a3e..afcd664 100644 --- a/src/app/components/authentication/login/login.component.html +++ b/src/app/components/authentication/login/login.component.html @@ -8,7 +8,8 @@
-
In the realm of quiz games, those who adeptly +
In the realm of quiz games, those who + adeptly tackle challenges and consistently seek innovative solutions will emerge as the true champions of tomorrow
Jason Medina
@@ -27,39 +28,39 @@

Log in to your acc

with your registered E-mail Address

-
+
- +
- - Enter password +
-
- - Still not a Player? - + + Still not a Player? +
-

Join Us Today! Create +

Join Us Today! Create Account

diff --git a/src/app/components/authentication/login/login.component.ts b/src/app/components/authentication/login/login.component.ts index 22ebd4f..4c066bb 100644 --- a/src/app/components/authentication/login/login.component.ts +++ b/src/app/components/authentication/login/login.component.ts @@ -1,9 +1,10 @@ import { Component } from '@angular/core'; +import { RouterLink } from '@angular/router'; @Component({ selector: 'app-login', standalone: true, - imports: [], + imports: [RouterLink], templateUrl: './login.component.html', styleUrl: './login.component.css' })