Learn how to ingest your first submission using Angular
ng new formizee-angular-example
src/app/app.component.html
<main> <form method="post" action="<your-endpoint-url>"> <label for="name"> Name <input id="name" autoComplete="name" name="name" /> </label> <label for="email"> Email <input id="email" autoComplete="email" name="email" /> </label> <button>Submit</button> </form> </main> <router-outlet />
ng serve
Was this page helpful?