forked from dani-garcia/bw_web_builds
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
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 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 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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
Subject: [PATCH] Add css class to easily hide password fields | ||
|
||
--- | ||
apps/web/src/app/auth/login/login-v1.component.html | 4 ++-- | ||
1 file changed, 2 insertions(+), 2 deletions(-) | ||
|
||
diff --git a/apps/web/src/app/auth/login/login-v1.component.html b/apps/web/src/app/auth/login/login-v1.component.html | ||
index 5b3c2a9942..e5586a4bdc 100644 | ||
--- a/apps/web/src/app/auth/login/login-v1.component.html | ||
+++ b/apps/web/src/app/auth/login/login-v1.component.html | ||
@@ -66,7 +66,7 @@ | ||
</ng-container> | ||
|
||
<div [ngClass]="{ 'tw-hidden': !validatedEmail }"> | ||
- <div class="tw-mb-6 tw-h-28"> | ||
+ <div class="tw-mb-6 tw-h-28 master-password-login"> | ||
<bit-form-field class="!tw-mb-1"> | ||
<bit-label>{{ "masterPass" | i18n }}</bit-label> | ||
<input type="password" bitInput #masterPasswordInput formControlName="masterPassword" /> | ||
@@ -86,7 +86,7 @@ | ||
<iframe id="hcaptcha_iframe" height="80" sandbox="allow-scripts allow-same-origin"></iframe> | ||
</div> | ||
|
||
- <div class="tw-mb-3 tw-flex tw-space-x-4"> | ||
+ <div class="tw-mb-3 tw-flex tw-space-x-4 master-password-login"> | ||
<button bitButton buttonType="primary" bitFormButton type="submit" [block]="true"> | ||
<span> {{ "loginWithMasterPassword" | i18n }} </span> | ||
</button> | ||
-- | ||
2.39.5 | ||
|