Please check your email to confirm your email address and complete the
registration process.
diff --git a/frontend/src/app/components/auth/register/register.component.scss b/frontend/src/app/components/auth/register/register.component.scss
index 1153b04..fb1b090 100644
--- a/frontend/src/app/components/auth/register/register.component.scss
+++ b/frontend/src/app/components/auth/register/register.component.scss
@@ -6,22 +6,3 @@ section {
background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
url(./../../../../assets/img/backgrounds/register.png);
}
-
-.reg-success {
- p {
- color: $black;
- font-size: 18px;
- font-weight: 400;
- margin: 36px 0 24px 0;
- }
- a {
- font-size: 18px;
- font-weight: 700;
- color: $blue;
- text-decoration: none;
- cursor: pointer;
- &:hover {
- text-decoration: underline;
- }
- }
-}
diff --git a/frontend/src/app/components/home/home.component.html b/frontend/src/app/components/home/home.component.html
index f07cd91..dbd88c9 100644
--- a/frontend/src/app/components/home/home.component.html
+++ b/frontend/src/app/components/home/home.component.html
@@ -3,5 +3,8 @@
+
diff --git a/frontend/src/app/components/home/home.component.ts b/frontend/src/app/components/home/home.component.ts
index a476914..0921506 100644
--- a/frontend/src/app/components/home/home.component.ts
+++ b/frontend/src/app/components/home/home.component.ts
@@ -6,6 +6,7 @@ import { ActivatedRoute } from '@angular/router';
import { RegisterComponent } from '../auth/register/register.component';
import { CommonModule } from '@angular/common';
import { LoginComponent } from '../auth/login/login.component';
+import { ForgotPasswordComponent } from '../auth/forgot-password/forgot-password.component';
@Component({
selector: 'app-home',
@@ -17,6 +18,7 @@ import { LoginComponent } from '../auth/login/login.component';
AuthComponent,
RegisterComponent,
LoginComponent,
+ ForgotPasswordComponent,
],
templateUrl: './home.component.html',
styleUrl: './home.component.scss',
diff --git a/frontend/src/app/shared/components/btn-large/btn-large.component.scss b/frontend/src/app/shared/components/btn-large/btn-large.component.scss
index cb30098..4172d65 100644
--- a/frontend/src/app/shared/components/btn-large/btn-large.component.scss
+++ b/frontend/src/app/shared/components/btn-large/btn-large.component.scss
@@ -16,11 +16,11 @@
&:not(:disabled):hover {
color: $blue;
background-color: $white;
- border: 1px solid $white;
+ border: 1px solid $blue;
}
&:disabled {
- background-color: $gray;
- color: darken($gray, 20%);
+ background-color: $light-blue;
+ color: darken($white, 10%);
border: 1px solid $gray;
cursor: default;
}
diff --git a/frontend/src/assets/img/backgrounds/forgot-password.png b/frontend/src/assets/img/backgrounds/forgot-password.png
new file mode 100644
index 0000000..6ffcc8c
Binary files /dev/null and b/frontend/src/assets/img/backgrounds/forgot-password.png differ
diff --git a/frontend/src/assets/style/auth-layout.scss b/frontend/src/assets/style/auth-layout.scss
index 7268996..3c2f03d 100644
--- a/frontend/src/assets/style/auth-layout.scss
+++ b/frontend/src/assets/style/auth-layout.scss
@@ -18,7 +18,7 @@ section {
.content {
width: 520px;
- height: 492px;
+ height: fit-content;
padding: 43px 56px;
border-radius: 48px;
background-color: $white;
@@ -28,7 +28,23 @@ section {
color: $blue;
margin-bottom: 24px;
}
- app-btn-large {
- margin-top: 36px;
+}
+
+.note {
+ p {
+ color: $black;
+ font-size: 18px;
+ font-weight: 400;
+ margin: 36px 0 24px 0;
+ }
+ a {
+ font-size: 18px;
+ font-weight: 700;
+ color: $blue;
+ text-decoration: none;
+ cursor: pointer;
+ &:hover {
+ text-decoration: underline;
+ }
}
}
diff --git a/frontend/src/assets/style/colors.scss b/frontend/src/assets/style/colors.scss
index 5a0bc7f..104b9be 100644
--- a/frontend/src/assets/style/colors.scss
+++ b/frontend/src/assets/style/colors.scss
@@ -3,4 +3,5 @@ $white: #fff;
$black: #000;
$gray: #ababab;
$blue: #2e3edf;
+$light-blue: #969eef;
$red: #ff002e;