Skip to content
Snippets Groups Projects

Resolve "Client: Make possible to add simple form"

Merged Menou Lucas requested to merge 123-client-make-possible-to-add-simple-form into develop
Files
5
<form #form="ngForm" (ngSubmit)="submit(form)">
<div class="form-group">
<label for="example-form">{{ label }}</label>
<input
type="{{ type }}"
class="form-control"
id="example-form"
ngModel
name="inputVal"
#inputVal="ngModel"
required
/>
</div>
<button
class="btn btn-secondary"
type="submit"
[disabled]="!form.form.valid"
>
<i class="{{ faSymbol }}"></i> {{ textButton }}
</button>
</form>
Loading