This is my first angular project. Just started today. I have a form and I want to disable the input field.
This is my .html
file below:
<div class="form-group">
<label for="projectTitle" class="label">Project Title</label>
<input type="text" fullWidth id="projectTitle" value=
{{projectDetails.name}}" placeholder="Project Title">
</div>
How to disable the input
from the .ts
file?