Skip to content

Commit

Permalink
removed colons after field name
Browse files Browse the repository at this point in the history
  • Loading branch information
pospyra committed Aug 30, 2023
1 parent ddfc051 commit 751d70a
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,22 @@
[InputType]="'email'"
[Identifier]="'email'"
[Width]="'100%'"
[InputLabel]="'Email:'"
[InputLabel]="'Email'"
[InputPlaceholder]="'Enter your email'"
(InputValueChange)="registrationForm.controls['email'].setValue($event)">
</app-custom-input>
<app-custom-input
[Identifier]="'username'"
[Width]="'100%'"
[InputLabel]="'Username:'"
[InputLabel]="'Username'"
[InputPlaceholder]="'Enter your username'"
(InputValueChange)="registrationForm.controls['username'].setValue($event)">
</app-custom-input>
<app-custom-input
[InputType]="'password'"
[Identifier]="'password'"
[Width]="'100%'"
[InputLabel]="'Password:'"
[InputLabel]="'Password'"
[InputPlaceholder]="'&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;'"
(InputValueChange)="registrationForm.controls['password'].setValue($event)">
</app-custom-input>
Expand Down

0 comments on commit 751d70a

Please sign in to comment.