I have 3 Checkboxes. The first option is bread, the second option is fish and the third has salt. I want to use Tamplate forms and not reactive forms. Can someone help me?
<form #form="ngForm">
<label>
<input name="" type="checkbox">Tem pao</label>
<label name=""><input type="checkbox">Tem peixe</label>
<label><input type="checkbox" name=""">Tem sal</label>
<button type="submit" (click)="enviarPrint(form)">Enviar</button>
</form>