mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 06:13:38 +00:00
add layout params for ABM campaign (#3459)
This commit is contained in:
@@ -0,0 +1,17 @@
|
|||||||
|
<h1 class="tw-text-4xl !tw-text-alt2">The Bitwarden Password Manager</h1>
|
||||||
|
<div class="tw-pt-32">
|
||||||
|
<h2 class="tw-text-2xl">
|
||||||
|
Trusted by millions of individuals, teams, and organizations worldwide for secure password
|
||||||
|
storage and sharing.
|
||||||
|
</h2>
|
||||||
|
</div>
|
||||||
|
<ul class="tw-mt-12 tw-flex tw-flex-col tw-gap-10 tw-text-2xl tw-text-main">
|
||||||
|
<li>Store logins, secure notes, and more</li>
|
||||||
|
<li>Collaborate and share securely</li>
|
||||||
|
<li>Access anywhere on any device</li>
|
||||||
|
<li>Create your account to get started</li>
|
||||||
|
</ul>
|
||||||
|
<div class="tw-mt-28 tw-flex tw-flex-col tw-items-center tw-gap-5">
|
||||||
|
<app-logo-forbes></app-logo-forbes>
|
||||||
|
<app-logo-us-news></app-logo-us-news>
|
||||||
|
</div>
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
import { Component } from "@angular/core";
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: "app-abm-enterprise-content",
|
||||||
|
templateUrl: "abm-enterprise-content.component.html",
|
||||||
|
})
|
||||||
|
export class AbmEnterpriseContentComponent {}
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
<h1 class="tw-text-4xl !tw-text-alt2">The Bitwarden Password Manager</h1>
|
||||||
|
<div class="tw-pt-32">
|
||||||
|
<h2 class="tw-text-2xl">
|
||||||
|
Trusted by millions of individuals, teams, and organizations worldwide for secure password
|
||||||
|
storage and sharing.
|
||||||
|
</h2>
|
||||||
|
</div>
|
||||||
|
<ul class="tw-mt-12 tw-flex tw-flex-col tw-gap-10 tw-text-2xl tw-text-main">
|
||||||
|
<li>Store logins, secure notes, and more</li>
|
||||||
|
<li>Collaborate and share securely</li>
|
||||||
|
<li>Access anywhere on any device</li>
|
||||||
|
<li>Create your account to get started</li>
|
||||||
|
</ul>
|
||||||
|
<div class="tw-mt-28 tw-flex tw-flex-col tw-items-center tw-gap-5">
|
||||||
|
<app-logo-forbes></app-logo-forbes>
|
||||||
|
<app-logo-us-news></app-logo-us-news>
|
||||||
|
</div>
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
import { Component } from "@angular/core";
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: "app-abm-teams-content",
|
||||||
|
templateUrl: "abm-teams-content.component.html",
|
||||||
|
})
|
||||||
|
export class AbmTeamsContentComponent {}
|
||||||
@@ -37,6 +37,8 @@
|
|||||||
*ngIf="layout === 'cnetcmpgnind'"
|
*ngIf="layout === 'cnetcmpgnind'"
|
||||||
></app-cnet-individual-content>
|
></app-cnet-individual-content>
|
||||||
<app-cnet-teams-content *ngIf="layout === 'cnetcmpgnteams'"></app-cnet-teams-content>
|
<app-cnet-teams-content *ngIf="layout === 'cnetcmpgnteams'"></app-cnet-teams-content>
|
||||||
|
<app-abm-enterprise-content *ngIf="layout === 'abmenterprise'"></app-abm-enterprise-content>
|
||||||
|
<app-abm-teams-content *ngIf="layout === 'abmteams'"></app-abm-teams-content>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="tw-w-1/2">
|
<div class="tw-w-1/2">
|
||||||
|
|||||||
@@ -10,6 +10,8 @@ import { RegisterFormModule } from "../register-form/register-form.module";
|
|||||||
|
|
||||||
import { BillingComponent } from "./billing.component";
|
import { BillingComponent } from "./billing.component";
|
||||||
import { ConfirmationDetailsComponent } from "./confirmation-details.component";
|
import { ConfirmationDetailsComponent } from "./confirmation-details.component";
|
||||||
|
import { AbmEnterpriseContentComponent } from "./content/abm-enterprise-content.component";
|
||||||
|
import { AbmTeamsContentComponent } from "./content/abm-teams-content.component";
|
||||||
import { CnetEnterpriseContentComponent } from "./content/cnet-enterprise-content.component";
|
import { CnetEnterpriseContentComponent } from "./content/cnet-enterprise-content.component";
|
||||||
import { CnetIndividualContentComponent } from "./content/cnet-individual-content.component";
|
import { CnetIndividualContentComponent } from "./content/cnet-individual-content.component";
|
||||||
import { CnetTeamsContentComponent } from "./content/cnet-teams-content.component";
|
import { CnetTeamsContentComponent } from "./content/cnet-teams-content.component";
|
||||||
@@ -52,6 +54,8 @@ import { VerticalStepperModule } from "./vertical-stepper/vertical-stepper.modul
|
|||||||
CnetEnterpriseContentComponent,
|
CnetEnterpriseContentComponent,
|
||||||
CnetIndividualContentComponent,
|
CnetIndividualContentComponent,
|
||||||
CnetTeamsContentComponent,
|
CnetTeamsContentComponent,
|
||||||
|
AbmEnterpriseContentComponent,
|
||||||
|
AbmTeamsContentComponent,
|
||||||
LogoCnetComponent,
|
LogoCnetComponent,
|
||||||
LogoForbesComponent,
|
LogoForbesComponent,
|
||||||
LogoUSNewsComponent,
|
LogoUSNewsComponent,
|
||||||
|
|||||||
Reference in New Issue
Block a user