Advertisement
Guest User

Untitled

a guest
Aug 26th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. <html ng-app="mittens">
  2. <head>
  3. <title>Mittens</title>
  4. <link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.css">
  5. <link rel="stylesheet" type="text/css" href="style.css">
  6. <script type="text/javascript" src="angular.min.js"></script>
  7. <script type="text/javascript">
  8. var app = angular.module('mittens', []);
  9.  
  10. app.controller('MittensCtrl', function($scope) {
  11. $scope.meows = [
  12. 'Hello I flipped over a cup.',
  13. 'My owner just said hi to me. Yum.',
  14. 'I ran around the house today and made a mess.',
  15. 'Just climbing around.'
  16. ];
  17. });
  18.  
  19. </script>
  20. </head>
  21. <body ng-controller="MittensCtrl">
  22. <h1 class="page-title">Mittens</h1>
  23. <div class= "row feed" >
  24. <div class="col-md-4">
  25. <h4>Login</h4>
  26. <br>
  27. <input type="text" size="30" placeholder="username">
  28. <br><br>
  29. <input type="password" size="30" placeholder="password">
  30. </div>
  31. <div class="col-md-8">
  32. <h3 ng-repeat="meow in meows">
  33. <span class="glyphicon glyphicon-user" aria-hidden="true"></span>
  34. {{ meow }}
  35. </h3>
  36. </div>
  37. </div>
  38. </body>
  39. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement