Skip to content

Commit

Permalink
Merge pull request #2355 from fecgov/feature/1690
Browse files Browse the repository at this point in the history
feature/1690 - Swap location of first and last name on Create Profile form
  • Loading branch information
toddlees authored Nov 12, 2024
2 parents f2ee12d + 5f8eb12 commit 347eaae
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ <h1>Create profile</h1>
<div class="grid">
<div class="col-12">
<div class="field">
<label for="last_name"><strong>LAST NAME</strong></label>
<input type="text" pInputText id="last_name" formControlName="last_name" />
<label for="first_name"><strong>FIRST NAME</strong></label>
<input type="text" pInputText id="first_name" formControlName="first_name" />
<app-error-messages
[form]="form"
fieldName="last_name"
fieldName="first_name"
[formSubmitted]="formSubmitted"
></app-error-messages>
</div>
Expand All @@ -35,11 +35,11 @@ <h1>Create profile</h1>
<div class="grid">
<div class="col-12">
<div class="field">
<label for="first_name"><strong>FIRST NAME</strong></label>
<input type="text" pInputText id="first_name" formControlName="first_name" />
<label for="last_name"><strong>LAST NAME</strong></label>
<input type="text" pInputText id="last_name" formControlName="last_name" />
<app-error-messages
[form]="form"
fieldName="first_name"
fieldName="last_name"
[formSubmitted]="formSubmitted"
></app-error-messages>
</div>
Expand Down

0 comments on commit 347eaae

Please sign in to comment.