Advertisement
Guest User

Untitled

a guest
Apr 28th, 2015
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title>Title</title>
  5. <script src="js/angular.min.js"></script>
  6. <script src="js/ngStorage.min.js"></script>
  7. <link rel="stylesheet" href="main.css">
  8. </head>
  9. <body ng-app="myApp">
  10. <div ng-controller="js/AJS.js">
  11. <form ng-submit="createTracker()" class="contact_form" name="contact_form">
  12. <ul>
  13. <li>
  14. <h2>Form Tutorial</h2>
  15. <span class="required_notification">'*' Denotes Required Field</span>
  16. </li>
  17. <li>
  18. <label for="name">Name:</label>
  19. <input type="text" name="name" ng-model="tName" />
  20. <span>*</span>
  21. </li>
  22. <li>
  23. <label for="price">Price:</label>
  24. <input type="text" name="price" ng-model="tPrice" />
  25. <span>*</span>
  26. </li>
  27. <li>
  28. <label for="funds">Funds:</label>
  29. <input name="funds" ng-model="tFunds" />
  30. </li>
  31. <li>
  32. <input type="submit" value="Submit Form" />
  33. </li>
  34. </ul>
  35. </form>
  36. </div>
  37. </body>
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement