Skip to content

Commit 37ad224

Browse files
committed
changes in PR related to scss and email variable
1 parent 0988724 commit 37ad224

File tree

7 files changed

+84
-276
lines changed

7 files changed

+84
-276
lines changed

projects/arc-lib/src/lib/components/auth/forgot-password/forgot-password.component.scss

Lines changed: 0 additions & 73 deletions
Original file line numberDiff line numberDiff line change
@@ -21,79 +21,6 @@
2121
}
2222
}
2323

24-
25-
.card-row {
26-
display: flex;
27-
margin: 0 -0.5rem;
28-
}
29-
30-
.card-col {
31-
flex: 1 0 calc(50% - 1rem);
32-
margin: 0 0.5rem;
33-
}
34-
.card-row {
35-
margin: 0;
36-
padding: 30px 70px;
37-
.sign-in-title {
38-
h2 {
39-
font-size: 36px;
40-
margin: 50px 0 10px 0;
41-
}
42-
h3 {
43-
font-size: 24px;
44-
color: #525252;
45-
margin: 0;
46-
}
47-
p {
48-
font-size: 16px;
49-
margin: 0 0 30px 0;
50-
}
51-
}
52-
}
53-
54-
.sign-in-button {
55-
button {
56-
font-weight: normal;
57-
border: 1px solid #d9d9d9;
58-
background: #fff;
59-
text-transform: inherit;
60-
font-size: 13px;
61-
&:hover {
62-
border: 1px solid #8f8f8f;
63-
}
64-
img {
65-
margin-right: 5px;
66-
}
67-
}
68-
}
69-
.footer {
70-
color: #525252;
71-
a {
72-
text-decoration: none;
73-
color: #19a5ff;
74-
font-weight: 700;
75-
}
76-
}
77-
.devider {
78-
color: #525252;
79-
font-size: 13px;
80-
margin: 0 10px 20px;
81-
&:before {
82-
content: '';
83-
height: 1px;
84-
background: #d9d9d9;
85-
width: 110px;
86-
margin-right: 10px;
87-
}
88-
89-
&:after {
90-
content: '';
91-
height: 1px;
92-
background: #d9d9d9;
93-
width: 110px;
94-
margin-left: 10px;
95-
}
96-
}
9724
.main-wrapper {
9825
padding-top: 147px;
9926
}

projects/arc-lib/src/lib/components/auth/login/login.component.scss

Lines changed: 0 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -21,63 +21,6 @@
2121
}
2222
}
2323

24-
.card-row {
25-
display: flex;
26-
margin: 0 -0.5rem;
27-
}
28-
29-
.card-col {
30-
flex: 1 0 calc(50% - 1rem);
31-
margin: 0 0.5rem;
32-
}
33-
.card-row {
34-
margin: 0;
35-
padding: 30px 70px;
36-
.sign-in-title {
37-
h2 {
38-
font-size: 36px;
39-
margin: 50px 0 10px 0;
40-
}
41-
h3 {
42-
font-size: 24px;
43-
color: #525252;
44-
margin: 0;
45-
}
46-
p {
47-
font-size: 16px;
48-
margin: 0 0 30px 0;
49-
}
50-
}
51-
}
52-
53-
.footer {
54-
color: #525252;
55-
a {
56-
text-decoration: none;
57-
color: #19a5ff;
58-
font-weight: 700;
59-
}
60-
}
61-
.devider {
62-
color: #525252;
63-
font-size: 13px;
64-
margin: 0 10px 20px;
65-
&:before {
66-
content: '';
67-
height: 1px;
68-
background: #d9d9d9;
69-
width: 110px;
70-
margin-right: 10px;
71-
}
72-
73-
&:after {
74-
content: '';
75-
height: 1px;
76-
background: #d9d9d9;
77-
width: 110px;
78-
margin-left: 10px;
79-
}
80-
}
8124
.forgot-password {
8225
a {
8326
text-decoration: none;

projects/arc-lib/src/lib/components/auth/reset-password/reset-password.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<div class="sign-in-title">
1111
<h2>Reset Password</h2>
1212
<p>
13-
Please Enter and confirm your new password .......... for to complete the password reset process
13+
Please Enter and confirm your new password <span>{{reqEmail}}</span> for to complete the password reset process
1414
</p>
1515
</div>
1616
<form [formGroup]="resetPasswordForm" (ngSubmit)="onSubmit()">

projects/arc-lib/src/lib/components/auth/reset-password/reset-password.component.scss

Lines changed: 0 additions & 72 deletions
Original file line numberDiff line numberDiff line change
@@ -21,78 +21,6 @@
2121
}
2222
}
2323

24-
.card-row {
25-
display: flex;
26-
margin: 0 -0.5rem;
27-
}
28-
29-
.card-col {
30-
flex: 1 0 calc(50% - 1rem);
31-
margin: 0 0.5rem;
32-
}
33-
.card-row {
34-
margin: 0;
35-
padding: 30px 70px;
36-
.sign-in-title {
37-
h2 {
38-
font-size: 36px;
39-
margin: 50px 0 10px 0;
40-
}
41-
h3 {
42-
font-size: 24px;
43-
color: #525252;
44-
margin: 0;
45-
}
46-
p {
47-
font-size: 16px;
48-
margin: 0 0 30px 0;
49-
}
50-
}
51-
}
52-
53-
.sign-in-button {
54-
button {
55-
font-weight: normal;
56-
border: 1px solid #d9d9d9;
57-
background: #fff;
58-
text-transform: inherit;
59-
font-size: 13px;
60-
&:hover {
61-
border: 1px solid #8f8f8f;
62-
}
63-
img{
64-
margin-right: 5px;
65-
}
66-
}
67-
}
68-
.footer {
69-
color: #525252;
70-
a {
71-
text-decoration: none;
72-
color: #19a5ff;
73-
font-weight: 700;
74-
}
75-
}
76-
.devider {
77-
color: #525252;
78-
font-size: 13px;
79-
margin: 0 10px 20px;
80-
&:before {
81-
content: '';
82-
height: 1px;
83-
background: #d9d9d9;
84-
width: 110px;
85-
margin-right: 10px;
86-
}
87-
88-
&:after {
89-
content: '';
90-
height: 1px;
91-
background: #d9d9d9;
92-
width: 110px;
93-
margin-left: 10px;
94-
}
95-
}
9624
.main-wrapper {
9725
padding-top: 147px;
9826
}

projects/arc-lib/src/lib/components/auth/reset-password/reset-password.component.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ import { NbToastrService } from '@nebular/theme';
1515
export class ResetPasswordComponent extends RouteComponentBaseDirective {
1616
resetPasswordForm: FormGroup;
1717
showPassword = false;
18+
reqEmail='';
1819
showConfirmPassword = false;
1920
imageUrl: string;
2021
altText: string;
@@ -30,14 +31,14 @@ export class ResetPasswordComponent extends RouteComponentBaseDirective {
3031
) {
3132
super(route, location);
3233
this.imageUrl = '../../../assets/images/auth/ARC_logo.png';
33-
this.altText = 'logo';
34+
this.altText = 'logo';
3435
}
3536

3637
ngOnInit() {
3738

3839
this.resetPasswordForm = new FormGroup(
3940
{
40-
password: new FormControl('', [
41+
password: new FormControl('', [
4142
Validators.required,
4243
Validators.minLength(6),
4344
Validators.pattern(

projects/arc-lib/src/lib/components/auth/signup/signup.component.scss

Lines changed: 1 addition & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -21,34 +21,6 @@
2121
}
2222
}
2323

24-
.card-row {
25-
display: flex;
26-
margin: 0 -0.5rem;
27-
}
28-
29-
.card-col {
30-
flex: 1 0 calc(50% - 1rem);
31-
margin: 0 0.5rem;
32-
}
33-
.card-row {
34-
margin: 0;
35-
padding: 30px 70px;
36-
.sign-in-title {
37-
h2 {
38-
font-size: 36px;
39-
margin: 50px 0 10px 0;
40-
}
41-
h3 {
42-
font-size: 24px;
43-
color: #525252;
44-
margin: 0;
45-
}
46-
p {
47-
font-size: 16px;
48-
margin: 0 0 30px 0;
49-
}
50-
}
51-
}
5224
.input-wrapper{
5325
display: flex;
5426
gap:10px;
@@ -58,46 +30,13 @@
5830
input{
5931

6032
margin: 5px 0;
61-
width: 80%;
33+
width: 100%;
6234
max-width: inherit;
6335
border-radius: 0;
6436
background: #fff;
6537
}
6638
}
6739

68-
.forgotpassword{
69-
position: relative;
70-
top: -40px;
71-
}
72-
73-
.footer {
74-
color: #525252;
75-
a {
76-
text-decoration: none;
77-
color: #19a5ff;
78-
font-weight: 700;
79-
}
80-
}
81-
.devider {
82-
color: #525252;
83-
font-size: 13px;
84-
margin: 0 10px 20px;
85-
&:before {
86-
content: '';
87-
height: 1px;
88-
background: #d9d9d9;
89-
width: 110px;
90-
margin-right: 10px;
91-
}
92-
93-
&:after {
94-
content: '';
95-
height: 1px;
96-
background: #d9d9d9;
97-
width: 110px;
98-
margin-left: 10px;
99-
}
100-
}
10140

10241
.main-wrapper {
10342
padding-top: 118px;

0 commit comments

Comments
 (0)