-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AC-1435] Copy updates for Single Organization policy prerequisite fo…
…r Account Recovery policy (#5774) * [AC-1435] Update copy/formatting on account recovery policy dialog * [AC-1435] Cleanup account recovery dialog component * [AC-1435] Update AccountRecovery policy description * [AC-1435] Update Tde option description to include notice for Single Org policy * fix: remove extra hyphen from help link, refs AC-1435 --------- Co-authored-by: Vincent Salucci <[email protected]>
- Loading branch information
1 parent
7aad247
commit 9d8f52e
Showing
4 changed files
with
75 additions
and
91 deletions.
There are no files selected for viewing
55 changes: 19 additions & 36 deletions
55
apps/web/src/app/admin-console/organizations/policies/reset-password.component.html
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 |
---|---|---|
@@ -1,40 +1,23 @@ | ||
<app-callout type="info" *ngIf="showKeyConnectorInfo"> | ||
<bit-callout type="info" *ngIf="showKeyConnectorInfo"> | ||
{{ "keyConnectorPolicyRestriction" | i18n }} | ||
</app-callout> | ||
</bit-callout> | ||
|
||
<app-callout type="warning"> | ||
{{ "resetPasswordPolicyWarning" | i18n }} | ||
</app-callout> | ||
<bit-callout type="success" [title]="'prerequisite' | i18n" icon="bwi-lightbulb"> | ||
{{ "accountRecoverySingleOrgRequirementDesc" | i18n }} | ||
</bit-callout> | ||
|
||
<div class="form-group"> | ||
<div class="form-check"> | ||
<input | ||
class="form-check-input" | ||
type="checkbox" | ||
id="enabled" | ||
[formControl]="enabled" | ||
name="Enabled" | ||
/> | ||
<label class="form-check-label" for="enabled">{{ "turnOn" | i18n }}</label> | ||
</div> | ||
</div> | ||
<bit-callout type="warning"> | ||
{{ "accountRecoveryPolicyWarning" | i18n }} | ||
</bit-callout> | ||
|
||
<div [formGroup]="data"> | ||
<h3 class="mt-4">{{ "resetPasswordPolicyAutoEnroll" | i18n }}</h3> | ||
<p>{{ "resetPasswordPolicyAutoEnrollDescription" | i18n }}</p> | ||
<app-callout type="warning"> | ||
{{ "resetPasswordPolicyAutoEnrollWarning" | i18n }} | ||
</app-callout> | ||
<div class="form-check"> | ||
<input | ||
class="form-check-input" | ||
type="checkbox" | ||
id="autoEnrollEnabled" | ||
name="AutoEnrollEnabled" | ||
formControlName="autoEnrollEnabled" | ||
/> | ||
<label class="form-check-label" for="autoEnrollEnabled"> | ||
{{ "resetPasswordPolicyAutoEnrollCheckbox" | i18n }} | ||
</label> | ||
</div> | ||
</div> | ||
<bit-form-control class="!tw-mb-1"> | ||
<input type="checkbox" bitCheckbox [formControl]="enabled" id="enabled" /> | ||
<bit-label>{{ "turnOn" | i18n }}</bit-label> | ||
</bit-form-control> | ||
|
||
<ng-container [formGroup]="data"> | ||
<bit-form-control class="!tw-mb-1"> | ||
<input type="checkbox" bitCheckbox formControlName="autoEnrollEnabled" id="autoEnrollEnabled" /> | ||
<bit-label>{{ "resetPasswordPolicyAutoEnrollCheckbox" | i18n }}</bit-label> | ||
</bit-form-control> | ||
</ng-container> |
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