chore(web): refractor
All checks were successful
Build, Test and Deploy / test-backend (push) Successful in 23s
Build, Test and Deploy / build-and-push (push) Successful in 22s
Build, Test and Deploy / deploy (push) Successful in 5s

This commit is contained in:
2026-02-06 11:33:25 +01:00
parent 7978884ca6
commit bcdeafe119
60 changed files with 1534 additions and 1567 deletions

View File

@@ -0,0 +1,14 @@
<div class="form-group">
@if (label()) { <label [for]="id()">{{ label() }}</label> }
<input
[id]="id()"
[type]="type()"
[placeholder]="placeholder()"
[value]="value"
(input)="onInput($event)"
(blur)="onTouched()"
[disabled]="disabled"
class="form-control"
/>
@if (error()) { <span class="error-text">{{ error() }}</span> }
</div>