mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
8 lines
342 B
HTML
8 lines
342 B
HTML
<div class="form-group">
|
|
<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> |