-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (59 loc) · 2.59 KB
/
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<title>Twitch.tv project</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link href='https://fonts.googleapis.com/css?family=Architects+Daughter' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="src/stylesheet.css">
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
</button>
</div>
<div id="navbar" class="navbar-collapse collapse">
<form id="live-search" class="navbar-form navbar-right" role="search">
<div class="form-group">
<input id="search" type="text" placeholder="Search for account" class="text-input form-control">
</div>
</form>
</div>
</div>
</nav>
<div class="jumbotron">
<div class="container buttons">
<h1><i class="fa fa-twitch"></i> Twitch.tv API</h1>
<p>
Know when your favorite streamers are online and see what
<br> they're up to. You can also search for their account names.
</p>
<div class="nav navbar-nav">
<a id="all-button" class="btn btn-primary btn-lg" role="button">All Users</a>
<a id="online-button" class="btn btn-success btn-lg" role="button">Online <i class="fa fa-user"></i></a>
<a id="offline-button" class="btn btn-danger btn-lg" role="button">Offline <i class="fa fa-user-times"></i></a>
</div>
</div>
</div>
<div id="account-list" class="container account-list">
<div id="online" class="row online">
</div>
<br>
<div id="offline" class="row offline">
</div>
<br>
<div id="closed" class="row closed">
</div>
</div>
</div>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<script src="src/app.js"></script>
</body>
</html>