-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdashboard.html
32 lines (26 loc) · 1.11 KB
/
dashboard.html
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
31
32
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Include jQuery and form validation plugin (https://jqueryvalidation.org/) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.15.0/jquery.validate.min.js"></script>
<!-- Include AngularJS -->
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.7/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.7/angular-route.min.js"></script>
<title>Dashboard</title>
</head>
<body ng-app="dashboard">
<div ng-view id="dashboard"></div>
<script src="/js/settings.js"></script>
<script src="/js/dashboard.js"></script>
<!-- Google App Engine API -->
<script>
function init() {
gapi.client.load('tennis', 'v1', onGapiLoad, '//' + window.location.host + '/_ah/api');
};
</script>
<script src="https://apis.google.com/js/client.js?onload=init"></script>
</body>
</html>