mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-09 09:58:20 -05:00
9 lines
356 B
HTML
9 lines
356 B
HTML
<div class="mb-3">
|
|
<label class="form-label" [for]="inputId">{{title}}</label>
|
|
<input #inputField type="text" class="form-control" [class.is-invalid]="error" [id]="inputId" [(ngModel)]="value" (change)="onChange(value)">
|
|
<small *ngIf="hint" class="form-text text-muted">{{hint}}</small>
|
|
<div class="invalid-feedback">
|
|
{{error}}
|
|
</div>
|
|
</div>
|