This blog post from the Angular team has a new recommendation for app file structure.
But I do not quite understand where to put my html-partial. Take this example: I have a partial that is the html for entering and confirming a password. I use this both under signup-page and under change-password-page.
So I have this file structure:
user/signup/signup.html
user/signup/signup-controller.ja
user/change-password/change-password.html
user/change-password/change-password-controller.ja
But where would the recommended place to put my small piece of partial-html, my file:
password-and-confirm-input-fields.html
? It does not have a controller or anything such...