-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·25 lines (20 loc) · 835 Bytes
/
Copy pathindex.html
File metadata and controls
executable file
·25 lines (20 loc) · 835 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
<!DOCTYPE html>
<html ng-app="githubViewer">
<head>
<script data-require="angular.js@1.4.7" data-semver="1.4.7" src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.7/angular.min.js"></script>
<script data-require="angular.js@1.4.7" data-semver="1.4.7" src="https://code.angularjs.org/1.4.7/angular-messages.js"></script>
<script src="script.js"></script>
<script src="github.js"></script>
<link rel="stylesheet" href="style.css" />
</head>
<body ng-controller="MainController">
<h1>{{message}}</h1>
<div>{{error}}</div>
{{ countdown }}
<form name="SearchUser" ng-submit="search(username)">
<input type="search" required placeholder="Username to find" ng-model="username" />
<input type="submit" value="Search" />
</form>
<div ng-include="'userdetails.html'" ng-show=user></div>
</body>
</html>