I am at the very beginning with my Angular learning and I implemented this form: http://codepen.io/jgrecule/pen/WxgqqO
What it is supposed to do is very basic: it consumes Flickr public JSONP feed as per Flicker specs https://www.flickr.com/services/feeds/docs/photos_public/ and renders the retrieved pictures thumbnails
The form I implemented has a submit button as well as a reset one. My problems I am trying too find solutions in the order of their importance are:
- The very first time when you typing tags everything works but when u try to submit the request again by either adding a new tag or an user Id or anything it no longer works. I can see this warning in the logs but I have no idea what is causing it
WARNING: Tried to load angular more than once. - The reset only works for the thumbnails but not for the other controls in my page
- I would like to find a way to show an error message when the user pushes on the
search flickerbutton and both tags and user ids input fields are empty. I tried to implement a custom directive but it was no way to get it working.
Thank you in advance for your inputs.

$scope. plus you have both angular.js and angular.min.js listed (also bootstrap), which you only need one. Your first step here should be eliminating the duplication and consolidating the code into a single angular module.