forked from anthonyto/anonymous-twilio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
23 lines (23 loc) · 890 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html ng-app="myApp">
<head lang="en">
<meta charset="UTF-8">
<title></title>
<link href="bower_components/bootstrap/dist/css/bootstrap.css" rel="stylesheet"/>
<link href="bower_components/bootstrap/dist/css/bootstrap-theme.css" rel="stylesheet"/>
<script src="bower_components/angular/angular.js"></script>
<script src="myApp.js"></script>
<script src="bower_components/bootstrap/dist/js/bootstrap.js"></script>
<script src="bower_components/jquery/dist/jquery.js"></script>
</head>
<body>
<div class="container">
<input type="text" ng-model="nameText" />
<div class="row" ng-controller="MessagesController">
<div ng-repeat="cust in customers | lowercase | filter:nameText | orderBy: 'name'" class="col-md-6">
<p>{{ cust.name }}</p>
</div>
</div>
</div>
</body>
</html>