Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2. <html>
  3. <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js">
  4. </script>
  5.  
  6. <head>
  7.     <title>Welcome to the SuccesSHS</title>
  8.     <h1> <b> Login to SuccesSHS </b> </h1>
  9. </head>
  10.  
  11. <body ng-app="">
  12.     <p> Username: <input type="text" ng-model="name" placeholder="Enter name here"> </p>
  13.     <p> Password: <input type="password" ng-model="password" placeholder="Password"> </p>
  14.     <p>
  15.         <strong> hello {{name}}</strong><br><br>
  16.         <input type="submit" ng-controller="btnCtrl">
  17.  
  18.         </input>
  19.     </p>
  20.  
  21. </body>
  22.  
  23. </html>
  24. <!--ng-model indicates the variable name-->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement