Advertisement
Guest User

Untitled

a guest
Jul 9th, 2015
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. <div id="list" ng-controller="Controller">
  2. <ul class="list-group">
  3. <li class="list-group-item" ng-repeat="item in username">
  4. <div>
  5. <h2 class="list-group-item-heading">{{item.name}}</h2>
  6. <h3 class="list-group-item-heading">{{item.un}}</h3>
  7. </div>
  8. </li>
  9. </ul>
  10. </div>
  11.  
  12. var myApp=angular.module('myApp',[]); myApp.controller('Controller',function Controller($login){
  13. $login.username=[
  14. {
  15. "name":"Dr. Sarfaraz",
  16. "un":"dsar@gmail.com",
  17. "pass":"12345212e2"
  18. },
  19. {
  20. "name":"Dr. Abdullah",
  21. "un":"abdul@yahoo.com",
  22. "pass":"13e45212e2"
  23. },
  24. {
  25. "name":"admin",
  26. "un":"admin@ehr.com",
  27. "pass":"*2345*12e2"
  28. }
  29. ]; });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement