diff --git a/apps/web/config/base.json b/apps/web/config/base.json index e64ef6ebeb2..b41ca4219d7 100644 --- a/apps/web/config/base.json +++ b/apps/web/config/base.json @@ -1,11 +1,5 @@ { "urls": {}, - "stripeKey": "pk_test_KPoCfZXu7mznb9uSCPZ2JpTD", - "braintreeKey": "sandbox_r72q8jq6_9pnxkwm75f87sdc2", - "paypal": { - "businessId": "AD3LAUZSNVPJY", - "buttonAction": "https://www.sandbox.paypal.com/cgi-bin/webscr" - }, "dev": { "port": 8080, "allowedHosts": "auto" diff --git a/apps/web/src/app/admin-console/icons/admin-console-logo.ts b/apps/web/src/app/admin-console/icons/admin-console-logo.ts index 32b2b7a13a5..1f1e6827bf6 100644 --- a/apps/web/src/app/admin-console/icons/admin-console-logo.ts +++ b/apps/web/src/app/admin-console/icons/admin-console-logo.ts @@ -1,5 +1,11 @@ import { svgIcon } from "@bitwarden/components"; export const AdminConsoleLogo = svgIcon` - + + + + + + + `; diff --git a/apps/web/src/app/admin-console/organizations/create/organization-information.component.html b/apps/web/src/app/admin-console/organizations/create/organization-information.component.html index e0a80060810..789efd92645 100644 --- a/apps/web/src/app/admin-console/organizations/create/organization-information.component.html +++ b/apps/web/src/app/admin-console/organizations/create/organization-information.component.html @@ -12,7 +12,7 @@

{{ "generalInformation" | i18n }}

- {{ "billingEmail" | i18n }} + {{ "email" | i18n }} diff --git a/apps/web/src/app/admin-console/organizations/layouts/organization-layout.component.ts b/apps/web/src/app/admin-console/organizations/layouts/organization-layout.component.ts index f65da9b87a3..e6db3b4480b 100644 --- a/apps/web/src/app/admin-console/organizations/layouts/organization-layout.component.ts +++ b/apps/web/src/app/admin-console/organizations/layouts/organization-layout.component.ts @@ -140,6 +140,7 @@ export class OrganizationLayoutComponent implements OnInit { } canShowBillingTab(organization: Organization): boolean { + return false; // disable billing tab in Vaultwarden return canAccessBillingTab(organization); } diff --git a/apps/web/src/app/admin-console/organizations/members/members.component.ts b/apps/web/src/app/admin-console/organizations/members/members.component.ts index 1ea77642229..bc76f369c03 100644 --- a/apps/web/src/app/admin-console/organizations/members/members.component.ts +++ b/apps/web/src/app/admin-console/organizations/members/members.component.ts @@ -209,11 +209,7 @@ export class MembersComponent extends BaseMembersComponent .find((p) => p.organizationId === this.organization.id); this.orgResetPasswordPolicyEnabled = resetPasswordPolicy?.enabled; - const billingMetadata = await this.billingApiService.getOrganizationBillingMetadata( - this.organization.id, - ); - - this.orgIsOnSecretsManagerStandalone = billingMetadata.isOnSecretsManagerStandalone; + this.orgIsOnSecretsManagerStandalone = false; // don't get billing metadata await this.load(); diff --git a/apps/web/src/app/admin-console/organizations/settings/account.component.html b/apps/web/src/app/admin-console/organizations/settings/account.component.html index b3fac56c0bb..796a1a817a8 100644 --- a/apps/web/src/app/admin-console/organizations/settings/account.component.html +++ b/apps/web/src/app/admin-console/organizations/settings/account.component.html @@ -16,7 +16,7 @@ - {{ "billingEmail" | i18n }} + {{ "email" | i18n }} diff --git a/apps/web/src/app/admin-console/organizations/settings/account.component.ts b/apps/web/src/app/admin-console/organizations/settings/account.component.ts index f2834b61096..117907171c6 100644 --- a/apps/web/src/app/admin-console/organizations/settings/account.component.ts +++ b/apps/web/src/app/admin-console/organizations/settings/account.component.ts @@ -97,7 +97,7 @@ export class AccountComponent implements OnInit, OnDestroy { ) {} async ngOnInit() { - this.selfHosted = this.platformUtilsService.isSelfHost(); + this.selfHosted = false; // set to false so we can rename organizations const userId = await firstValueFrom(getUserId(this.accountService.activeAccount$)); this.route.params diff --git a/apps/web/src/app/app.component.html b/apps/web/src/app/app.component.html index a39c045e0e3..9d72e609b40 100644 --- a/apps/web/src/app/app.component.html +++ b/apps/web/src/app/app.component.html @@ -3,7 +3,7 @@ when the body has the layout_frontend class. Having this match the index allows for a duplicative yet seamless loading state here for process reloading. -->
- Bitwarden + Vaultwarden
{{ "changeMasterPassword" | i18n }} {{ "changeMasterPassword" | i18n }} - - diff --git a/apps/web/src/app/auth/settings/two-factor/two-factor-setup-authenticator.component.ts b/apps/web/src/app/auth/settings/two-factor/two-factor-setup-authenticator.component.ts index de187d2c33e..c33f49fd702 100644 --- a/apps/web/src/app/auth/settings/two-factor/two-factor-setup-authenticator.component.ts +++ b/apps/web/src/app/auth/settings/two-factor/two-factor-setup-authenticator.component.ts @@ -189,11 +189,11 @@ export class TwoFactorSetupAuthenticatorComponent new window.QRious({ element: document.getElementById("qr"), value: - "otpauth://totp/Bitwarden:" + + "otpauth://totp/Vaultwarden:" + Utils.encodeRFC3986URIComponent(email) + "?secret=" + encodeURIComponent(this.key) + - "&issuer=Bitwarden", + "&issuer=Vaultwarden", size: 160, }); } diff --git a/apps/web/src/app/billing/organizations/organization-billing-history-view.component.ts b/apps/web/src/app/billing/organizations/organization-billing-history-view.component.ts index d533badabf8..6512ecbd130 100644 --- a/apps/web/src/app/billing/organizations/organization-billing-history-view.component.ts +++ b/apps/web/src/app/billing/organizations/organization-billing-history-view.component.ts @@ -54,6 +54,7 @@ export class OrgBillingHistoryViewComponent implements OnInit, OnDestroy { this.loading = true; + /* disable billing history const openInvoicesPromise = this.organizationBillingApiService.getBillingInvoices( this.organizationId, "open", @@ -87,6 +88,7 @@ export class OrgBillingHistoryViewComponent implements OnInit, OnDestroy { openInvoices.length <= pageSize || paidInvoices.length <= pageSize || transactions.length <= pageSize; + */ this.loading = false; } diff --git a/apps/web/src/app/billing/organizations/organization-plans.component.html b/apps/web/src/app/billing/organizations/organization-plans.component.html index 2566250c823..0aafdc5ba9e 100644 --- a/apps/web/src/app/billing/organizations/organization-plans.component.html +++ b/apps/web/src/app/billing/organizations/organization-plans.component.html @@ -6,7 +6,7 @@ > {{ "loading" | i18n }} - +

{{ "uploadLicenseFileOrg" | i18n }}

@@ -40,12 +40,7 @@ (onLicenseFileUploaded)="onLicenseFileUploaded($event)" /> - + !!plan.PasswordManager); @@ -236,6 +235,7 @@ export class OrganizationPlansComponent implements OnInit, OnDestroy { this.plan = providerDefaultPlan.type; this.productTier = providerDefaultPlan.productTier; } + end of asking /api/plans in Vaultwarden */ if (!this.createOrganization) { this.upgradeFlowPrefillForm(); @@ -285,6 +285,7 @@ export class OrganizationPlansComponent implements OnInit, OnDestroy { } get upgradeRequiresPaymentMethod() { + return false; // Vaultwarden is always free return ( this.organization?.productTierType === ProductTierType.Free && !this.showFree && @@ -320,6 +321,7 @@ export class OrganizationPlansComponent implements OnInit, OnDestroy { } get selectableProducts() { + return null; // there are no products to select in Vaultwarden if (this.acceptingSponsorship) { const familyPlan = this.passwordManagerPlans.find( (plan) => plan.type === PlanType.FamiliesAnnually, @@ -351,6 +353,7 @@ export class OrganizationPlansComponent implements OnInit, OnDestroy { } get selectablePlans() { + return null; // no plans to select in Vaultwarden const selectedProductTierType = this.formGroup.controls.productTier.value; const result = this.passwordManagerPlans?.filter( @@ -481,6 +484,7 @@ export class OrganizationPlansComponent implements OnInit, OnDestroy { } get planOffersSecretsManager() { + return false; // no support for secrets manager in Vaultwarden return this.selectedSecretsManagerPlan != null; } @@ -489,6 +493,7 @@ export class OrganizationPlansComponent implements OnInit, OnDestroy { } changedProduct() { + return; // no choice of products in Vaultwarden const selectedPlan = this.selectablePlans[0]; this.setPlanType(selectedPlan.type); @@ -617,9 +622,8 @@ export class OrganizationPlansComponent implements OnInit, OnDestroy { const collectionCt = collection.encryptedString; const orgKeys = await this.keyService.makeKeyPair(orgKey[1]); - orgId = this.selfHosted - ? await this.createSelfHosted(key, collectionCt, orgKeys) - : await this.createCloudHosted(key, collectionCt, orgKeys, orgKey[1]); + // always use createCloudHosted() to disable license file upload + orgId = await this.createCloudHosted(key, collectionCt, orgKeys, orgKey[1]); this.toastService.showToast({ variant: "success", @@ -767,7 +771,9 @@ export class OrganizationPlansComponent implements OnInit, OnDestroy { request.billingEmail = this.formGroup.controls.billingEmail.value; request.initiationPath = "New organization creation in-product"; request.keys = new OrganizationKeysRequest(orgKeys[0], orgKeys[1].encryptedString); + request.planType = PlanType.Free; // always select the free plan in Vaultwarden + /* there is no plan to select in Vaultwarden if (this.selectedPlan.type === PlanType.Free) { request.planType = PlanType.Free; } else { @@ -792,6 +798,7 @@ export class OrganizationPlansComponent implements OnInit, OnDestroy { // Secrets Manager this.buildSecretsManagerRequest(request); + end plan selection and no support for secret manager in Vaultwarden */ if (this.hasProvider) { const providerRequest = new ProviderOrganizationCreateRequest( @@ -853,6 +860,7 @@ export class OrganizationPlansComponent implements OnInit, OnDestroy { private buildSecretsManagerRequest( request: OrganizationCreateRequest | OrganizationUpgradeRequest, ): void { + return; // Vaultwarden does not support SecretsManager const formValues = this.secretsManagerForm.value; request.useSecretsManager = this.planOffersSecretsManager && formValues.enabled; @@ -871,6 +879,7 @@ export class OrganizationPlansComponent implements OnInit, OnDestroy { } private upgradeFlowPrefillForm() { + return; // Vaultwarden only supports free plan if (this.acceptingSponsorship) { this.formGroup.controls.productTier.setValue(ProductTierType.Families); this.changedProduct(); diff --git a/apps/web/src/app/core/router.service.ts b/apps/web/src/app/core/router.service.ts index ff0aea47b9a..21ec31a19a8 100644 --- a/apps/web/src/app/core/router.service.ts +++ b/apps/web/src/app/core/router.service.ts @@ -61,7 +61,7 @@ export class RouterService { .subscribe((event: NavigationEnd) => { this.currentUrl = event.url; - let title = i18nService.t("bitWebVault"); + let title = "Vaultwarden Web"; if (this.currentUrl.includes("/sm/")) { title = i18nService.t("bitSecretsManager"); diff --git a/apps/web/src/app/core/web-platform-utils.service.ts b/apps/web/src/app/core/web-platform-utils.service.ts index 3df2a7d895b..f73d8116900 100644 --- a/apps/web/src/app/core/web-platform-utils.service.ts +++ b/apps/web/src/app/core/web-platform-utils.service.ts @@ -135,14 +135,17 @@ export class WebPlatformUtilsService implements PlatformUtilsService { } isDev(): boolean { + return false; // treat Vaultwarden as production ready return process.env.NODE_ENV === "development"; } isSelfHost(): boolean { + return true; // treat Vaultwarden as self hosted return WebPlatformUtilsService.isSelfHost(); } static isSelfHost(): boolean { + return true; // treat Vaultwarden as self hosted return process.env.ENV.toString() === "selfhosted"; } diff --git a/apps/web/src/app/layouts/frontend-layout.component.html b/apps/web/src/app/layouts/frontend-layout.component.html index d19af54f5df..03c8edf6315 100644 --- a/apps/web/src/app/layouts/frontend-layout.component.html +++ b/apps/web/src/app/layouts/frontend-layout.component.html @@ -3,6 +3,12 @@
-
© {{ year }} Bitwarden Inc.
+
Vaultwarden Web
{{ version }}
+
+
+ A modified version of the Bitwarden® Web Vault for Vaultwarden (an unofficial rewrite of the + Bitwarden® server).
+ Vaultwarden is not associated with the Bitwarden® project nor Bitwarden Inc. +
diff --git a/apps/web/src/app/layouts/header/web-header.component.html b/apps/web/src/app/layouts/header/web-header.component.html index 7cba19b29ad..024b14daadc 100644 --- a/apps/web/src/app/layouts/header/web-header.component.html +++ b/apps/web/src/app/layouts/header/web-header.component.html @@ -61,7 +61,12 @@ {{ "accountSettings" | i18n }} - + {{ "getHelp" | i18n }} diff --git a/apps/web/src/app/layouts/password-manager-logo.ts b/apps/web/src/app/layouts/password-manager-logo.ts index d93e2d5bb30..e15394f785b 100644 --- a/apps/web/src/app/layouts/password-manager-logo.ts +++ b/apps/web/src/app/layouts/password-manager-logo.ts @@ -1,5 +1,11 @@ import { svgIcon } from "@bitwarden/components"; export const PasswordManagerLogo = svgIcon` - + + + + + + + `; diff --git a/apps/web/src/app/layouts/product-switcher/navigation-switcher/navigation-switcher.component.html b/apps/web/src/app/layouts/product-switcher/navigation-switcher/navigation-switcher.component.html index 08195d95bf9..f51a216a14f 100644 --- a/apps/web/src/app/layouts/product-switcher/navigation-switcher/navigation-switcher.component.html +++ b/apps/web/src/app/layouts/product-switcher/navigation-switcher/navigation-switcher.component.html @@ -10,10 +10,7 @@ > -
+
{{ "moreFromBitwarden" | i18n }} diff --git a/apps/web/src/app/layouts/product-switcher/product-switcher-content.component.html b/apps/web/src/app/layouts/product-switcher/product-switcher-content.component.html index 204737eee2e..9bee4f6e03b 100644 --- a/apps/web/src/app/layouts/product-switcher/product-switcher-content.component.html +++ b/apps/web/src/app/layouts/product-switcher/product-switcher-content.component.html @@ -30,7 +30,7 @@
{{ "moreFromBitwarden" | i18n }} diff --git a/apps/web/src/app/layouts/user-layout.component.ts b/apps/web/src/app/layouts/user-layout.component.ts index f0ac3ef9b48..f6e7f5a492d 100644 --- a/apps/web/src/app/layouts/user-layout.component.ts +++ b/apps/web/src/app/layouts/user-layout.component.ts @@ -3,7 +3,7 @@ import { CommonModule } from "@angular/common"; import { Component, OnInit } from "@angular/core"; import { RouterModule } from "@angular/router"; -import { Observable, switchMap } from "rxjs"; +import { Observable, of } from "rxjs"; import { JslibModule } from "@bitwarden/angular/jslib.module"; import { AccountService } from "@bitwarden/common/auth/abstractions/account.service"; @@ -41,15 +41,14 @@ export class UserLayoutComponent implements OnInit { private billingAccountProfileStateService: BillingAccountProfileStateService, private accountService: AccountService, ) { - this.showSubscription$ = this.accountService.activeAccount$.pipe( - switchMap((account) => - this.billingAccountProfileStateService.canViewSubscription$(account.id), - ), - ); + this.showSubscription$ = of(false); // always hide subscriptions in Vaultwarden } async ngOnInit() { document.body.classList.remove("layout_frontend"); await this.syncService.fullSync(false); + + this.hasFamilySponsorshipAvailable$ = of(false); // disable family Sponsorships in Vaultwarden + this.showSponsoredFamilies$ = of(false); // disable family Sponsorships in Vaultwarden } } diff --git a/apps/web/src/app/platform/web-environment.service.ts b/apps/web/src/app/platform/web-environment.service.ts index 1df842d6b31..d61637c92e2 100644 --- a/apps/web/src/app/platform/web-environment.service.ts +++ b/apps/web/src/app/platform/web-environment.service.ts @@ -38,7 +38,17 @@ export class WebEnvironmentService extends DefaultEnvironmentService { super(stateProvider, accountService, additionalRegionConfigs); // The web vault always uses the current location as the base url - envUrls.base ??= this.win.location.origin; + // If the base URL is `https://vaultwarden.example.com/base/path/`, + // `window.location.href` should have one of the following forms: + // + // - `https://vaultwarden.example.com/base/path/` + // - `https://vaultwarden.example.com/base/path/#/some/route[?queryParam=...]` + // - `https://vaultwarden.example.com/base/path/?queryParam=...` + // + // We want to get to just `https://vaultwarden.example.com/base/path`. + let baseUrl = this.win.location.href; + baseUrl = baseUrl.replace(/(\/+|\/*#.*|\/*\?.*)$/, ""); // Strip off trailing `/`, `#`, `?` and everything after. + envUrls.base ??= baseUrl; // Find the region const currentHostname = new URL(this.win.location.href).hostname; diff --git a/apps/web/src/app/tools/send/add-edit.component.html b/apps/web/src/app/tools/send/add-edit.component.html index 7eade18a7c6..b8f865faa75 100644 --- a/apps/web/src/app/tools/send/add-edit.component.html +++ b/apps/web/src/app/tools/send/add-edit.component.html @@ -230,7 +230,12 @@

{{ "password" | i18n }} {{ "newPassword" | i18n }} - + {{ "sendPasswordDesc" | i18n }} diff --git a/apps/web/src/app/tools/send/send-access-explainer.component.html b/apps/web/src/app/tools/send/send-access-explainer.component.html index f56b68cc299..284b9165143 100644 --- a/apps/web/src/app/tools/send/send-access-explainer.component.html +++ b/apps/web/src/app/tools/send/send-access-explainer.component.html @@ -1,18 +1,5 @@

{{ "sendAccessTaglineProductDesc" | i18n }} - {{ "sendAccessTaglineLearnMore" | i18n }} - Bitwarden Send - {{ "sendAccessTaglineOr" | i18n }} - {{ - "sendAccessTaglineSignUp" | i18n - }} - {{ "sendAccessTaglineTryToday" | i18n }}

diff --git a/apps/web/src/favicon.ico b/apps/web/src/favicon.ico index 841840dfe16..8b64b26fad0 100644 Binary files a/apps/web/src/favicon.ico and b/apps/web/src/favicon.ico differ diff --git a/apps/web/src/images/icon-dark.png b/apps/web/src/images/icon-dark.png new file mode 100644 index 00000000000..960424ba791 Binary files /dev/null and b/apps/web/src/images/icon-dark.png differ diff --git a/apps/web/src/images/icon-white.png b/apps/web/src/images/icon-white.png new file mode 100644 index 00000000000..7fc9d42e746 Binary files /dev/null and b/apps/web/src/images/icon-white.png differ diff --git a/apps/web/src/images/icon-white.svg b/apps/web/src/images/icon-white.svg new file mode 100644 index 00000000000..f782c4ccc47 --- /dev/null +++ b/apps/web/src/images/icon-white.svg @@ -0,0 +1,5 @@ + + Vaultwarden Icon - White + + + diff --git a/apps/web/src/images/icons/android-chrome-192x192.png b/apps/web/src/images/icons/android-chrome-192x192.png index 43976a5832e..f903989dbb6 100644 Binary files a/apps/web/src/images/icons/android-chrome-192x192.png and b/apps/web/src/images/icons/android-chrome-192x192.png differ diff --git a/apps/web/src/images/icons/android-chrome-512x512.png b/apps/web/src/images/icons/android-chrome-512x512.png index 8e5600b4df4..74372b2f07b 100644 Binary files a/apps/web/src/images/icons/android-chrome-512x512.png and b/apps/web/src/images/icons/android-chrome-512x512.png differ diff --git a/apps/web/src/images/icons/apple-touch-icon.png b/apps/web/src/images/icons/apple-touch-icon.png index ea07eca8181..085ec29a212 100644 Binary files a/apps/web/src/images/icons/apple-touch-icon.png and b/apps/web/src/images/icons/apple-touch-icon.png differ diff --git a/apps/web/src/images/icons/favicon-16x16.png b/apps/web/src/images/icons/favicon-16x16.png index e42bf10e800..022e8e1bb22 100644 Binary files a/apps/web/src/images/icons/favicon-16x16.png and b/apps/web/src/images/icons/favicon-16x16.png differ diff --git a/apps/web/src/images/icons/favicon-32x32.png b/apps/web/src/images/icons/favicon-32x32.png index 7dc2e8f9ac6..15b499e8c0b 100644 Binary files a/apps/web/src/images/icons/favicon-32x32.png and b/apps/web/src/images/icons/favicon-32x32.png differ diff --git a/apps/web/src/images/icons/mstile-150x150.png b/apps/web/src/images/icons/mstile-150x150.png index 90bdd338c47..3af51d5dc7e 100644 Binary files a/apps/web/src/images/icons/mstile-150x150.png and b/apps/web/src/images/icons/mstile-150x150.png differ diff --git a/apps/web/src/images/icons/safari-pinned-tab.svg b/apps/web/src/images/icons/safari-pinned-tab.svg index 29063dd6de8..a5948076ccd 100644 --- a/apps/web/src/images/icons/safari-pinned-tab.svg +++ b/apps/web/src/images/icons/safari-pinned-tab.svg @@ -1,34 +1,92 @@ - - - - - - - - - - - - + + + + diff --git a/apps/web/src/images/logo-dark@2x.png b/apps/web/src/images/logo-dark@2x.png index e6519fb0fe0..5b1efb46405 100644 Binary files a/apps/web/src/images/logo-dark@2x.png and b/apps/web/src/images/logo-dark@2x.png differ diff --git a/apps/web/src/images/logo-white.svg b/apps/web/src/images/logo-white.svg index d9ffdd8e339..1ac13d0a092 100644 --- a/apps/web/src/images/logo-white.svg +++ b/apps/web/src/images/logo-white.svg @@ -1,6 +1,7 @@ - - - - \ No newline at end of file + + Vaultwarden + + + + + diff --git a/apps/web/src/images/logo-white@2x.png b/apps/web/src/images/logo-white@2x.png index 099a4e4de25..29423571b96 100644 Binary files a/apps/web/src/images/logo-white@2x.png and b/apps/web/src/images/logo-white@2x.png differ diff --git a/apps/web/src/images/logo.svg b/apps/web/src/images/logo.svg index 6ea279a40a2..1a5096931bb 100644 --- a/apps/web/src/images/logo.svg +++ b/apps/web/src/images/logo.svg @@ -1,7 +1,7 @@ - - Bitwarden - - + + Vaultwarden + + + + diff --git a/apps/web/src/index.html b/apps/web/src/index.html index 0b8ea864914..5d98411f465 100644 --- a/apps/web/src/index.html +++ b/apps/web/src/index.html @@ -5,19 +5,21 @@ - Bitwarden Web vault + Vaultwarden Web + +
- Bitwarden + Vaultwarden
/apps/cli/jest.config.js", "/apps/desktop/jest.config.js", "/apps/web/jest.config.js", - "/bitwarden_license/bit-web/jest.config.js", - "/bitwarden_license/bit-cli/jest.config.js", - "/bitwarden_license/bit-common/jest.config.js", "/libs/admin-console/jest.config.js", "/libs/angular/jest.config.js", diff --git a/libs/angular/src/auth/components/register.component.ts b/libs/angular/src/auth/components/register.component.ts index e4787aa8c01..1675a45a332 100644 --- a/libs/angular/src/auth/components/register.component.ts +++ b/libs/angular/src/auth/components/register.component.ts @@ -108,6 +108,14 @@ export class RegisterComponent extends CaptchaProtectedComponent implements OnIn } async submit(showToast = true) { + if (typeof crypto.subtle === "undefined") { + this.platformUtilsService.showToast( + "error", + "This browser requires HTTPS to use the web vault", + "Check the Vaultwarden wiki for details on how to enable it", + ); + return; + } let email = this.formGroup.value.email; email = email.trim().toLowerCase(); let name = this.formGroup.value.name; diff --git a/libs/auth/src/angular/anon-layout/anon-layout-wrapper.component.ts b/libs/auth/src/angular/anon-layout/anon-layout-wrapper.component.ts index 04dc3b6dfd2..2791b0bc172 100644 --- a/libs/auth/src/angular/anon-layout/anon-layout-wrapper.component.ts +++ b/libs/auth/src/angular/anon-layout/anon-layout-wrapper.component.ts @@ -8,6 +8,8 @@ import { AnonLayoutComponent } from "@bitwarden/auth/angular"; import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.service"; import { Icon, Translation } from "@bitwarden/components"; +import { BitwardenShield } from "../icons"; + import { AnonLayoutWrapperDataService } from "./anon-layout-wrapper-data.service"; export interface AnonLayoutWrapperData { @@ -160,7 +162,7 @@ export class AnonLayoutWrapperComponent implements OnInit, OnDestroy { private resetPageData() { this.pageTitle = null; this.pageSubtitle = null; - this.pageIcon = null; + this.pageIcon = BitwardenShield; this.showReadonlyHostname = null; this.maxWidth = null; this.titleAreaMaxWidth = null; diff --git a/libs/auth/src/angular/anon-layout/anon-layout.component.html b/libs/auth/src/angular/anon-layout/anon-layout.component.html index cb3445abd96..3e5463cd711 100644 --- a/libs/auth/src/angular/anon-layout/anon-layout.component.html +++ b/libs/auth/src/angular/anon-layout/anon-layout.component.html @@ -8,7 +8,7 @@ @@ -55,8 +55,14 @@

-
© {{ year }} Bitwarden Inc.
+
Vaultwarden Web
{{ version }}
+
+
+ A modified version of the Bitwarden® Web Vault for Vaultwarden (an unofficial rewrite of + the Bitwarden® server).
+ Vaultwarden is not associated with the Bitwarden® project nor Bitwarden Inc. +
diff --git a/libs/auth/src/angular/icons/bitwarden-logo.icon.ts b/libs/auth/src/angular/icons/bitwarden-logo.icon.ts index 2a1ae48526b..9fde19eae0a 100644 --- a/libs/auth/src/angular/icons/bitwarden-logo.icon.ts +++ b/libs/auth/src/angular/icons/bitwarden-logo.icon.ts @@ -1,9 +1,11 @@ import { svgIcon } from "@bitwarden/components"; export const BitwardenLogo = svgIcon` - - Bitwarden - - - + + Vaultwarden + + + + + `; diff --git a/libs/auth/src/angular/icons/bitwarden-shield.icon.ts b/libs/auth/src/angular/icons/bitwarden-shield.icon.ts index 86e3a0bb1b2..4ccf188e948 100644 --- a/libs/auth/src/angular/icons/bitwarden-shield.icon.ts +++ b/libs/auth/src/angular/icons/bitwarden-shield.icon.ts @@ -1,7 +1,9 @@ import { svgIcon } from "@bitwarden/components"; export const BitwardenShield = svgIcon` - - - + + Vaultwarden + + + `; diff --git a/libs/auth/src/angular/login/login-secondary-content.component.ts b/libs/auth/src/angular/login/login-secondary-content.component.ts index b608542b375..4f0b86baa7f 100644 --- a/libs/auth/src/angular/login/login-secondary-content.component.ts +++ b/libs/auth/src/angular/login/login-secondary-content.component.ts @@ -11,7 +11,6 @@ import { LinkModule } from "@bitwarden/components"; imports: [CommonModule, JslibModule, LinkModule, RouterModule], template: `
- {{ "newToBitwarden" | i18n }} {{ "createAccount" | i18n }}
`, diff --git a/libs/auth/src/angular/registration/registration-start/registration-start.component.html b/libs/auth/src/angular/registration/registration-start/registration-start.component.html index de3611a5975..23a73245660 100644 --- a/libs/auth/src/angular/registration/registration-start/registration-start.component.html +++ b/libs/auth/src/angular/registration/registration-start/registration-start.component.html @@ -53,7 +53,7 @@ {{ "continue" | i18n }} -

+

{{ "byContinuingYouAgreeToThe" | i18n }}