summaryrefslogtreecommitdiffstats
path: root/framework/src/onos/web/gui/src/main/webapp/_sdh/ng-examples/ch04-08-nested-forms.html
diff options
context:
space:
mode:
authorCNlucius <lukai1@huawei.com>2016-09-13 11:40:12 +0800
committerCNlucius <lukai1@huawei.com>2016-09-13 11:41:53 +0800
commitb731e2f1dd0972409b136aebc7b463dd72c9cfad (patch)
tree5107d7d80c19ad8076c2c97c2b5ef8d1cf3ab903 /framework/src/onos/web/gui/src/main/webapp/_sdh/ng-examples/ch04-08-nested-forms.html
parentee93993458266114c29271a481ef9ce7ce621b2a (diff)
ONOSFW-171
O/S-SFC-ONOS scenario documentation Change-Id: I51ae1cf736ea24ab6680f8edca1b2bf5dd598365 Signed-off-by: CNlucius <lukai1@huawei.com>
Diffstat (limited to 'framework/src/onos/web/gui/src/main/webapp/_sdh/ng-examples/ch04-08-nested-forms.html')
-rw-r--r--framework/src/onos/web/gui/src/main/webapp/_sdh/ng-examples/ch04-08-nested-forms.html63
1 files changed, 0 insertions, 63 deletions
diff --git a/framework/src/onos/web/gui/src/main/webapp/_sdh/ng-examples/ch04-08-nested-forms.html b/framework/src/onos/web/gui/src/main/webapp/_sdh/ng-examples/ch04-08-nested-forms.html
deleted file mode 100644
index c3149195..00000000
--- a/framework/src/onos/web/gui/src/main/webapp/_sdh/ng-examples/ch04-08-nested-forms.html
+++ /dev/null
@@ -1,63 +0,0 @@
-<!DOCTYPE html>
-<html ng-app>
-<head>
- <title>Notes App</title>
- <script src="../../tp/angular.js"></script>
-</head>
-<!-- no controller in this example -->
-<body>
-
-<form novalidate name="myForm">
- <input type="text"
- class="username"
- name="uname"
- ng-model="ctrl.user.username"
- required=""
- placeholder="Username"
- ng-minlength="4"/>
-
- <input type="password"
- class="password"
- name="pad"
- ng-model="ctrl.user.password"
- required=""
- placeholder="Password"
- required=""/>
-
- <p/>
-
- <ng-form name="profile">
- <input type="text"
- name="firstName"
- ng-model="ctrl.user.profile.firstName"
- placeholder="First Name"
- required/>
- <input type="text"
- name="middleName"
- ng-model="ctrl.user.profile.middleName"
- placeholder="Middle Name"/>
- <input type="text"
- name="lastName"
- ng-model="ctrl.user.profile.lastName"
- placeholder="Last Name"
- required/>
-
- <input type="date"
- name="dob"
- placeholder="Date of birth"
- ng-model="ctrl.user.profile.dob"/>
- </ng-form>
-
- <span ng-show="myForm.profile.$invalid">
- Please fill out the profile information
- </span>
-
- <p/>
-
- <input type="submit"
- value="Submit"
- ng-disabled="myForm.$invalid"/>
-</form>
-
-</body>
-</html>