blob: 7e78845c5161ab02828c3ac9fc793301186cf8b0 (
plain)
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
29
30
|
<!doctype html>
<html ng-app="Alias">
<head>
<meta charset="utf-8">
<title>Alias</title>
<link rel="stylesheet" href="css/app.css"/>
</head>
<body>
<form ng-submit="login()" ng-controller="ConnectCtl">
Username: <input type="text" ng-model="username"/>
Password: <input type="password" ng-model="password"/>
<input type="submit" value="Login" ng-disabled="!username"/>
</form>
<div id="roster" ng-controller="RosterCtl">
<ul>
<li ng-repeat="(key,value) in contacts">{{key}}</li>
</ul>
</div>
<script src="lib/angular/angular.js"></script>
<script src="lib/jquery-1.7.2.min.js"></script>
<script src="lib/config.js"></script>
<script src="js/alias.js"></script>
<script src="lib/strophe.js"></script>
<script src="js/services.js"></script>
<script src="js/controllers.js"></script>
<script src="js/filters.js"></script>
<script src="js/directives.js"></script>
</body>
</html>
|