Is there a way to change the text color in an HTML form to be red when the form is invalid and green when it is valid using Angular 8?
(HTML)
<p class="status">
Form Status: {{ Form.status }}
</p>
(TS)
Form = this.fb.group({
Id: [0],
name: ['', Validators.required],
app: ['', Validators.required],
domain: [''],
environment: ['']
})