feat(web): * for reaquired field
All checks were successful
Build, Test and Deploy / test-backend (push) Successful in 22s
Build, Test and Deploy / build-and-push (push) Successful in 37s
Build, Test and Deploy / deploy (push) Successful in 9s

This commit is contained in:
2026-02-09 18:55:38 +01:00
parent f0e0f57e7c
commit eb4ad8b637
4 changed files with 15 additions and 1 deletions

View File

@@ -1,5 +1,10 @@
<div class="form-group">
@if (label()) { <label [for]="id()">{{ label() }}</label> }
@if (label()) {
<label [for]="id()">
{{ label() }}
@if (required()) { <span class="required-mark">*</span> }
</label>
}
<input
[id]="id()"
[type]="type()"