forked from colorfest/angularjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (22 loc) · 788 Bytes
/
index.html
File metadata and controls
28 lines (22 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!doctype html>
<html lang="en">
<head>
<title>AccioCode AngularJS Tutorial - Binding</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-COMPATIBLE" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, user-scalable=no">
<script src="resources/js/angularjstutorial-deps.js"></script>
<script src="resources/js/angularjstutorial.js"></script>
<link rel="stylesheet" href="resources/css/angularjstutorial.css">
</head>
<body>
<div class="mainContainer" data-ng-app="MyApp">
<div data-ng-controller="MainCtrl">
<h1>AngularJS Tutorial - Binding</h1>
<input type="text" data-ng-model="data.label">
<input type="text" data-ng-model="data.class">
<button class="btn {{data.class}}">{{data.label}}</button>
</div>
</div>
</body>
</html>