-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: revert verify/sign in changes (#3364)
- Loading branch information
1 parent
cb9cd69
commit 160753f
Showing
75 changed files
with
1,383 additions
and
2,676 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file modified
BIN
-135 Bytes
(66%)
android/app/src/main/res/mipmap-mdpi/ic_launcher_background.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file removed
BIN
-1.4 KB
android/app/src/main/res/mipmap-mdpi/ic_launcher_new_splash_round.webp
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file removed
BIN
-4.62 KB
android/app/src/main/res/mipmap-xxhdpi/ic_launcher_new_splash_round.webp
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed
BIN
-2.19 KB
android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_new_splash.webp
Binary file not shown.
Binary file removed
BIN
-6.5 KB
android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_new_splash_round.webp
Binary file not shown.
2 changes: 1 addition & 1 deletion
2
android/app/src/main/res/values/ic_launcher_new_splash_background.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
<color name="ic_launcher_new_splash_background">#FFFFFF</color> | ||
<color name="ic_launcher_new_splash_background">#220033</color> | ||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,25 @@ | ||
<ion-content> | ||
<div class="disabled-user"> | ||
<div class="disabled-user__content-container"> | ||
<div class="disabled-user__error-icon-container"> | ||
<ion-icon | ||
class="disabled-user__error-icon" | ||
[src]="'/assets/svg/error-outlined.svg'" | ||
slot="icon-only" | ||
></ion-icon> | ||
</div> | ||
<section class="disabled-user__text"> | ||
<h1 class="disabled-user__header">Account disabled</h1> | ||
<p class="disabled-user__content"> | ||
This account is no longer active. Please contact your company admin for details. | ||
</p> | ||
</section> | ||
</div> | ||
<div class="disabled-user__cta"> | ||
<ion-button | ||
(click)="onGotoSignInClick()" | ||
class="btn-primary" | ||
fill="clear" | ||
aria-label="Navigate back to sign in page" | ||
role="button" | ||
> | ||
<div class="disabled-user__cta-content"> | ||
<ion-icon class="disabled-user__arrow-icon" [src]="'/assets/svg/arrow-left.svg'" slot="icon-only"></ion-icon> | ||
<span class="disabled-user__cta-text">Back to sign in</span> | ||
</div> | ||
</ion-button> | ||
<ion-grid class="disabled--header-container"> | ||
<ion-row class="disabled--header ion-align-items-center"> | ||
<ion-col class="disabled--header-logo-container"> | ||
<img class="disabled--header-logo" src="../../../assets/svg/fyle-logo-light.svg" alt="fyle-logo-light" /> | ||
</ion-col> | ||
</ion-row> | ||
</ion-grid> | ||
<div class="disabled--body"> | ||
<div id="disabled--header" class="disabled--body-header">Account Disabled</div> | ||
<img class="disabled--image" src="../../../assets/images/stop.svg" alt="Stop" /> | ||
<div class="disabled--subtext"> | ||
This account is no longer active. Please contact your company admin for details. | ||
</div> | ||
</div> | ||
</ion-content> | ||
|
||
<ion-footer> | ||
<ion-toolbar mode="md"> | ||
<ion-button fill="clear" expand="full" (click)="onGotoSignInClick()"> | ||
<span class="disabled--greyed"> Incorrect Account? </span> | ||
Try Signing in Again | ||
</ion-button> | ||
</ion-toolbar> | ||
</ion-footer> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,80 +1,93 @@ | ||
@import '../../../theme/colors.scss'; | ||
$disabled-header: #220033; | ||
$body-header: #000; | ||
$body-subheader: #4a4a4a; | ||
$password-icon: #b9beba; | ||
$secondary-cta-border: #e0e0e0; | ||
|
||
.disabled-user { | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: space-between; | ||
height: 100%; | ||
.disabled { | ||
&--header { | ||
min-height: 140px; | ||
} | ||
|
||
&--header-container { | ||
min-height: 140px; | ||
background-color: $disabled-header; | ||
} | ||
|
||
&__content-container { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
flex-grow: 2; | ||
&--header-logo-container { | ||
text-align: center; | ||
} | ||
|
||
&__arrow-icon { | ||
fill: $pure-white; | ||
margin-right: 8px; | ||
&--header-logo { | ||
max-width: 100px; | ||
} | ||
|
||
&__cta-text { | ||
font-size: 14px; | ||
font-weight: 500; | ||
&--body { | ||
padding: 24px; | ||
text-align: center; | ||
} | ||
|
||
&__cta { | ||
margin: 0 20px 24px 20px; | ||
&--body-field { | ||
width: 100%; | ||
} | ||
|
||
&__cta-content { | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
&--body-header { | ||
font-size: 24px; | ||
margin-top: 16px; | ||
margin-bottom: 8px; | ||
color: $body-header; | ||
font-weight: 700; | ||
} | ||
|
||
&__error-icon-container { | ||
width: 60px; | ||
height: 60px; | ||
border-radius: 8px; | ||
background: $pale-pink; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
margin-bottom: 16px; | ||
&--image { | ||
max-width: 125px; | ||
padding: 12px; | ||
} | ||
|
||
&__error-icon { | ||
width: 45px; | ||
height: 45px; | ||
&--subtext { | ||
font-size: 16px; | ||
color: $body-subheader; | ||
margin-top: 8px; | ||
margin-bottom: 24px; | ||
} | ||
|
||
&__text { | ||
display: flex; | ||
align-items: center; | ||
gap: 8px; | ||
flex-direction: column; | ||
&--primary-cta { | ||
.mat-button-base { | ||
width: 100%; | ||
font-weight: 700; | ||
min-height: 47px; | ||
} | ||
} | ||
|
||
&__header { | ||
color: $black; | ||
font-size: 20px; | ||
font-style: normal; | ||
font-weight: 500; | ||
line-height: normal; | ||
height: 26px; | ||
margin: 0; | ||
&--password-visibility-icon { | ||
color: $password-icon; | ||
} | ||
|
||
&__content { | ||
color: $black-light; | ||
&--secondary-cta { | ||
.mat-button-base { | ||
width: 100%; | ||
font-weight: 700; | ||
min-height: 47px; | ||
letter-spacing: 1.6px; | ||
border: 1px solid $secondary-cta-border; | ||
} | ||
margin-top: 24px; | ||
} | ||
|
||
&--redirect { | ||
margin: 16px; | ||
text-align: center; | ||
font-size: 14px; | ||
font-style: normal; | ||
font-weight: 400; | ||
line-height: 1.25; | ||
height: 36px; | ||
width: 274px; | ||
font-size: 16px; | ||
a { | ||
text-decoration: none; | ||
} | ||
} | ||
|
||
&--edit-email { | ||
text-align: end; | ||
} | ||
|
||
&--greyed { | ||
color: grey; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.