|
9 | 9 | <ng-template #error>
|
10 | 10 | <mat-icon @negativeState color="warn">error</mat-icon>
|
11 | 11 | </ng-template>
|
12 |
| - <div> |
13 |
| - <p>{{lowerCaseCriteriaMsg}}</p> |
14 |
| - </div> |
| 12 | + <span>{{lowerCaseCriteriaMsg}}</span> |
15 | 13 | </div>
|
16 | 14 |
|
17 | 15 | <div class="info-row" @items *ngIf="passwordComponent.enableUpperCaseLetterRule">
|
|
23 | 21 | <ng-template #error>
|
24 | 22 | <mat-icon @negativeState color="warn">error</mat-icon>
|
25 | 23 | </ng-template>
|
26 |
| - <div> |
27 |
| - <p>{{upperCaseCriteriaMsg}}</p> |
28 |
| - </div> |
| 24 | + <span>{{upperCaseCriteriaMsg}}</span> |
29 | 25 | </div>
|
30 | 26 |
|
31 | 27 | <div class="info-row" @items *ngIf="passwordComponent.enableDigitRule">
|
|
37 | 33 | <ng-template #error>
|
38 | 34 | <mat-icon @negativeState color="warn">error</mat-icon>
|
39 | 35 | </ng-template>
|
40 |
| - <div> |
41 |
| - <p>{{digitsCriteriaMsg}}</p> |
42 |
| - </div> |
| 36 | + <span>{{digitsCriteriaMsg}}</span> |
43 | 37 | </div>
|
44 | 38 |
|
45 | 39 | <div class="info-row" @items *ngIf="passwordComponent.enableSpecialCharRule">
|
|
51 | 45 | <ng-template #error>
|
52 | 46 | <mat-icon @negativeState color="warn">error</mat-icon>
|
53 | 47 | </ng-template>
|
54 |
| - <div> |
55 |
| - <p>{{specialCharsCriteriaMsg}}</p> |
56 |
| - </div> |
| 48 | + <span>{{specialCharsCriteriaMsg}}</span> |
57 | 49 | </div>
|
58 | 50 |
|
59 | 51 | <div class="info-row" @items *ngIf="passwordComponent.enableLengthRule">
|
|
65 | 57 | <ng-template #error>
|
66 | 58 | <mat-icon @negativeState color="warn">error</mat-icon>
|
67 | 59 | </ng-template>
|
68 |
| - <div> |
69 |
| - <p>{{minCharsCriteriaMsg}}</p> |
70 |
| - </div> |
| 60 | + <span>{{minCharsCriteriaMsg}}</span> |
71 | 61 | </div>
|
72 | 62 |
|
73 | 63 | <div class="info-row" @items *ngIf="passwordComponent.customValidator">
|
|
79 | 69 | <ng-template #error>
|
80 | 70 | <mat-icon @negativeState color="warn">error</mat-icon>
|
81 | 71 | </ng-template>
|
82 |
| - <div> |
83 |
| - <p>{{customCharsCriteriaMsg}}</p> |
84 |
| - </div> |
| 72 | + <span>{{customCharsCriteriaMsg}}</span> |
85 | 73 | </div>
|
86 | 74 |
|
87 | 75 | <div *ngIf="enableScoreInfo" class="info-row" @items>
|
|
93 | 81 | <ng-template #error>
|
94 | 82 | <mat-icon @negativeState color="warn">error</mat-icon>
|
95 | 83 | </ng-template>
|
96 |
| - <div> |
97 |
| - <p>Password's strength = {{passwordComponent.strength}} %100</p> |
98 |
| - </div> |
| 84 | + <span>Password's strength = {{passwordComponent.strength}} %100</span> |
99 | 85 | </div>
|
100 | 86 |
|
101 | 87 | </mat-card-content>
|
|
0 commit comments