Correct direction of inputs on the POST JOB

This commit is contained in:
2025-07-23 17:37:54 -07:00
parent 7025da237b
commit 93948ffbd2
@@ -58,23 +58,27 @@
<div #step *ngIf="!newListing.remote" class="sub-frame"> <div #step *ngIf="!newListing.remote" class="sub-frame">
<div class="center"> <div class="center">
<h2>Job Location</h2> <h2>Job Location</h2>
<div class="content-frame split"> <div>
<div class="content-frame split" style="border-radius: 10px 10px 0 0;">
<div class="half-frame"> <div class="half-frame">
<label>City</label> <label>City</label>
<input name="city" [(ngModel)]="newListing.city" type="text" /> <input name="city" [(ngModel)]="newListing.city" type="text" />
</div> </div>
<div class="half-frame">
<label>2 Letter State/Region</label>
<input name="stateOrRegion" maxlength="2" minlength="2" [(ngModel)]="newListing.stateOrRegion" type="text" />
</div>
</div>
<div class="content-frame split" style="border-radius: 0 0 10px 10px;">
<div class="half-frame"> <div class="half-frame">
<label>2 Letter Country</label> <label>2 Letter Country</label>
<input name="country" maxlength="2" minlength="2" [(ngModel)]="newListing.country" type="text" /> <input name="country" maxlength="2" minlength="2" [(ngModel)]="newListing.country" type="text" />
</div> </div>
<div class="half-frame">
<label>2 Letter State/Region</label>
<input name="stateOrRegion" maxlength="2" minlength="2" [(ngModel)]="newListing.stateOrRegion" type="text" />
</div>
<div class="half-frame"> <div class="half-frame">
<label>Postal Code</label> <label>Postal Code</label>
<input name="postalCode" [(ngModel)]="newListing.postalCode" type="text" /> <input name="postalCode" [(ngModel)]="newListing.postalCode" type="text" />
</div> </div>
</div>
<button type="button" (click)="prevStep()">Back</button> <button type="button" (click)="prevStep()">Back</button>
<button type="button" (click)="nextStep()">Next</button> <button type="button" (click)="nextStep()">Next</button>
</div> </div>