mirror of
https://github.com/bitwarden/browser
synced 2026-02-27 18:13:29 +00:00
* [AC-1423] Add ProgressModule to shared.module.ts * [AC-1423] Update cloud subscription page styles - Remove bootstrap styles - Use CL components where applicable - Use CL typography directives - Update heading levels to prepare for new SM sections * [AC-1423] Add usePasswordManager boolean to organization domain * [AC-1423] Introduce BitwardenProductType enum * [AC-1423] Update Organization subscription line items - Add product type prefix - Indent addon services like additional storage and service accounts - Show line items for free plans * [AC-1423] Simply sort function * [AC-1423] Remove header border * [AC-1423] Make "Password Manager" the default fallback for product name
14 lines
526 B
HTML
14 lines
526 B
HTML
<form *ngIf="showSecretsManager" [formGroup]="formGroup" [bitSubmit]="submit">
|
|
<h2 bitTypography="h2" class="tw-mt-7">{{ "secretsManagerBeta" | i18n }}</h2>
|
|
<p bitTypography="body1">{{ "secretsManagerSubscriptionDesc" | i18n }}</p>
|
|
|
|
<bit-form-control>
|
|
<input type="checkbox" bitCheckbox formControlName="enabled" />
|
|
<bit-label>{{ "secretsManagerEnable" | i18n }}</bit-label>
|
|
</bit-form-control>
|
|
|
|
<button bitButton bitFormButton buttonType="primary" type="submit">
|
|
{{ "save" | i18n }}
|
|
</button>
|
|
</form>
|