|
|
|
@ -9,16 +9,14 @@ import { UntypedFormGroup } from '@angular/forms'; |
|
|
|
@Component({ |
|
|
|
selector: 'abp-personal-settings-half-row', |
|
|
|
template: ` <div class="w-50 d-inline">
|
|
|
|
<div class="mb-3"> |
|
|
|
<label [attr.for]="name" class="form-label">{{ displayName | abpLocalization }} </label> |
|
|
|
<input |
|
|
|
type="text" |
|
|
|
[attr.id]="id" |
|
|
|
class="form-control" |
|
|
|
[attr.name]="name" |
|
|
|
[formControlName]="name" |
|
|
|
/> |
|
|
|
</div> |
|
|
|
<label [attr.for]="name" class="form-label">{{ displayName | abpLocalization }} </label> |
|
|
|
<input |
|
|
|
type="text" |
|
|
|
[attr.id]="id" |
|
|
|
class="form-control" |
|
|
|
[attr.name]="name" |
|
|
|
[formControlName]="name" |
|
|
|
/> |
|
|
|
</div>`,
|
|
|
|
styles: [], |
|
|
|
viewProviders: [EXTENSIBLE_FORM_VIEW_PROVIDER], |
|
|
|
|