You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -13,51 +13,32 @@ <h2>Please Complete Your registration</h2>
13
13
<!-- key -->
14
14
<divclass="input-box address-input-box">
15
15
<divclass="input-title">
16
-
<span
17
-
>Application Sub domain
18
-
<spanclass="required">*</span></span
19
-
>
16
+
<span>Application Sub domain
17
+
<spanclass="required">*</span></span>
20
18
</div>
21
19
<divclass="input">
22
20
<divclass="input-container">
23
-
<input
24
-
placeholder="Enter Unique Key."
25
-
fieldSize="medium"
26
-
status="“info”"
27
-
formControlName="key"
28
-
nbInput
29
-
/>
30
-
<nb-icon
31
-
icon="info-outline"
32
-
class="info-icon"
33
-
nbTooltip="Enter a unique key starting with an alphabet. This field is required and has a maximum length of 10 characters. Special characters are not allowed"
nbTooltip="Enter a unique key starting with an alphabet. This field is required and has a maximum length of 10 characters. Special characters are not allowed"></nb-icon>
35
25
</div>
36
-
<div
37
-
class="error-msg"
38
-
*ngIf="
26
+
<divclass="error-msg" *ngIf="
39
27
addTenantForm.get('key').hasError('required') &&
40
28
addTenantForm.get('key').touched
41
-
"
42
-
>
29
+
">
43
30
Sub-domain is required.
44
31
</div>
45
-
<div
46
-
class="error-msg"
47
-
*ngIf="
32
+
<divclass="error-msg" *ngIf="
48
33
addTenantForm.get('key').hasError('maxlength') &&
49
34
addTenantForm.get('key').touched
50
-
"
51
-
>
35
+
">
52
36
Maximum length exceeded.
53
37
</div>
54
-
<div
55
-
class="error-msg"
56
-
*ngIf="
38
+
<divclass="error-msg" *ngIf="
57
39
addTenantForm.get('key').hasError('pattern') &&
58
40
addTenantForm.get('key').touched
59
-
"
60
-
>
41
+
">
61
42
Invalid characters used.
62
43
</div>
63
44
</div>
@@ -69,72 +50,12 @@ <h2>Please Complete Your registration</h2>
0 commit comments