Is it possible to nest html forms like this
so
If you're using AngularJS, any tags inside your
ng-app
are replaced at runtime with ngForm
directives that are designed to be nested.
In Angular forms can be nested. This means that the outer form is valid when all of the child forms are valid as well. However, browsers do not allow nesting of
elements, so Angular provides the
ngForm
directive which behaves identically tobut can be nested. This allows you to have nested forms, which is very useful when using Angular validation directives in forms that are dynamically generated using the
ngRepeat
directive. (source)