diff --git a/apps/web/src/app/accounts/register.component.html b/apps/web/src/app/accounts/register.component.html index 41d766002b..970c2c13de 100644 --- a/apps/web/src/app/accounts/register.component.html +++ b/apps/web/src/app/accounts/register.component.html @@ -28,14 +28,328 @@ - -
-
-
-
- +
+
+
+
+ +
+

The Bitwarden Password Manager

+

+ Trusted by millions of individuals, teams, and organizations worldwide for secure + password storage and sharing. +

+

Store logins, secure notes, and more

+

Collaborate and share securely

+

Access anywhere on any device

+

Create your account to get started

+
+ + +
+

+ Start Your Teams
Enterprise Free Trial Now +

+

+ Millions of individuals, teams, and organizations worldwide trust Bitwarden for secure + password storage and sharing. +

+

Collaborate and share securely

+

Deploy and manage quickly and easily

+

Access anywhere on any device

+

Create your account to get started

+
+ + +
+

+ Start Your Teams
Enterprise Free Trial Now +

+

+ Millions of individuals, teams, and organizations worldwide trust Bitwarden for secure + password storage and sharing. +

+

Collaborate and share securely

+

Deploy and manage quickly and easily

+

Access anywhere on any device

+

Create your account to get started

+
+ + +
+

Start Your Premium Account Now

+

+ Millions of individuals, teams, and organizations worldwide trust Bitwarden for secure + password storage and sharing. +

+

Store logins, secure notes, and more

+

Secure your account with advanced two-step login

+

Access anywhere on any device

+

Create your account to get started

+
+
+
+
+
+
+

{{ "createAccount" | i18n }}

+
+
+ + {{ "createOrganizationCreatePersonalAccount" | i18n }} + +
+ + + {{ "emailAddressDesc" | i18n }} +
+
+ + + {{ "yourNameDesc" | i18n }} +
+
+ + + +
+
+ + + +
+
+ + +
+
+ {{ "masterPassDesc" | i18n }} +
+
+ +
+ + +
+
+
+ + + {{ "masterPassHintDesc" | i18n }} +
+
+ +
+
+
+ + +
+
+
+
+ + + {{ "cancel" | i18n }} + +
+
+
+
-
+
+
+
+
+
+ + cnet logo + +
+
+ "No more excuses; start using Bitwarden today. The identity you save could be your + own. The money definitely will be." +
+
+
+ +
+
+
+ + Forbes Logo + +
+
+ “Bitwarden boasts the backing of some of the world's best security experts and an + attractive, easy-to-use interface” +
+
+
+
+
+ US News 360 Reviews Best Password Manager +
+
+ US News 360 Reviews Best Password Manager +
+
+
diff --git a/apps/web/src/app/modules/loose-components.module.ts b/apps/web/src/app/modules/loose-components.module.ts index f1e9b3aa92..1abbcbd00d 100644 --- a/apps/web/src/app/modules/loose-components.module.ts +++ b/apps/web/src/app/modules/loose-components.module.ts @@ -161,7 +161,7 @@ import { FolderAddEditComponent } from "../vault/folder-add-edit.component"; import { ShareComponent } from "../vault/share.component"; import { PipesModule } from "./pipes/pipes.module"; -import { RegisterFormModule } from "./register-form/register-form.module"; +import { RegisterFormModule , RegisterFormModule } from "./register-form/register-form.module"; import { SharedModule } from "./shared.module"; import { VaultFilterModule } from "./vault-filter/vault-filter.module"; import { OrganizationBadgeModule } from "./vault/modules/organization-badge/organization-badge.module"; diff --git a/libs/angular/src/components/register.component.ts b/libs/angular/src/components/register.component.ts index 3f5339c916..5873c08e8f 100644 --- a/libs/angular/src/components/register.component.ts +++ b/libs/angular/src/components/register.component.ts @@ -212,6 +212,8 @@ export class RegisterComponent extends CaptchaProtectedComponent implements OnIn togglePassword(confirmField: boolean) { this.showPassword = !this.showPassword; + console.log("Here::", document.getElementById("masterPasswordRetype")); + console.log("Here2::", document.getElementById("masterPassword")); document.getElementById(confirmField ? "masterPasswordRetype" : "masterPassword").focus(); }