frontend: update label and placeholder for name input in create user form

This commit is contained in:
CSantosM 2026-02-25 18:18:36 +01:00
parent 6592dac7fc
commit 10a9982a57

View File

@ -34,9 +34,9 @@
<!-- Name -->
<mat-form-field subscriptSizing="dynamic" appearance="outline">
<mat-label>Full Name</mat-label>
<mat-label>Name</mat-label>
<mat-icon matPrefix class="field-prefix-icon">person_outline</mat-icon>
<input matInput formControlName="name" placeholder="Enter full name" />
<input matInput formControlName="name" placeholder="Enter your name" />
@if (getFieldError('name')) {
<mat-error>{{ getFieldError('name') }}</mat-error>
}