aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/onos/web/gui/src/main/webapp/_sdh/ng-examples/ch04-05-form-validation.html
diff options
context:
space:
mode:
Diffstat (limited to 'framework/src/onos/web/gui/src/main/webapp/_sdh/ng-examples/ch04-05-form-validation.html')
-rw-r--r--framework/src/onos/web/gui/src/main/webapp/_sdh/ng-examples/ch04-05-form-validation.html42
1 files changed, 0 insertions, 42 deletions
diff --git a/framework/src/onos/web/gui/src/main/webapp/_sdh/ng-examples/ch04-05-form-validation.html b/framework/src/onos/web/gui/src/main/webapp/_sdh/ng-examples/ch04-05-form-validation.html
deleted file mode 100644
index 3501adb1..00000000
--- a/framework/src/onos/web/gui/src/main/webapp/_sdh/ng-examples/ch04-05-form-validation.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<!DOCTYPE html>
-<html ng-app="notesApp">
-<head>
- <title>Notes App</title>
- <script src="../../tp/angular.js"></script>
- <style>
- span {
- background-color: #cce;
- }
- </style>
-</head>
-<body ng-controller="MainCtrl as ctrl">
-
-<form ng-submit="ctrl.submit()" name="myForm">
- <input type="text"
- placeholder="username"
- ng-model="ctrl.user.username"
- required
- ng-minlength="4"/>
-
- <input type="password"
- placeholder="password"
- ng-model="ctrl.user.password"
- required/>
-
- <input type="submit"
- value="Submit"
- ng-disabled="myForm.$invalid"/>
-</form>
-
-<script type="text/javascript">
- angular.module('notesApp', [])
- .controller('MainCtrl', [function () {
- var self = this;
- self.submit = function () {
- console.log('Submit: ', self.user);
- };
- }]);
-</script>
-
-</body>
-</html>