-
Notifications
You must be signed in to change notification settings - Fork 2
/
browse.html
120 lines (106 loc) · 4.37 KB
/
browse.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Browse Ideas</title>
<meta name="HandheldFriendly" content="True" />
<meta name="MobileOptimized" content="320" />
<meta name="viewport" content="width=device-width, initial-scale=1.0 maximum-scale=1.0, user-scalable=no" />
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/main.css" />
<link rel="stylesheet" href="css/index.css" />
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top navbar-opacity" role="navigation">
<div class="container">
<div class="navbar-header">
<!-- Logo -->
<a class="navbar-brand" href="index.html"><img src="img/logo.png" alt="" /></a>
<!-- Hamburger Button -->
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="index.html">Home</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="ourteam.html">Our Team</a></li>
</ul>
<form class="navbar-form navbar-right">
<div><input id="name-search" type="text" class="form-control" placeholder="search for name" /></div>
</form>
</div>
</div>
</nav>
<div id="mainContent" class="container">
<div class="jumbotron">
<h1>Browse Ideas</h1>
</div>
</div>
<div class="container">
<div class="table-responsive">
<table class="table table-striped">
<tr>
<th><strong>Ideas</strong></th>
<th><strong>Submmitted By</strong></th>
<th><strong>Favorite</strong></th>
</tr>
<tr id='todo-items'></tr>
</table>
<center>
<p id='summary'>Loading...</p>
<img id='summary' src="img/loading.gif">
</center>
</div>
</div>
<!-- <table class="table table-striped">
<tr>
<td><strong>Ideas</strong></td>
<td>
<strong>Favorite</strong>
</td>
</tr>
<tr>
<td>I have a brilliant idea</td>
<td>
<form action="">
<input type="checkbox" value="Favorite">
</form>
</td>
</tr>
<tr>
<td>I have a brilliant idea</td>
<td>
<form action="">
<input type="checkbox" value="Favorite">
</form>
</td>
</tr>
<tr>
<td>I have a brilliant idea</td>
<td>
<form action="">
<input type="checkbox" value="Favorite">
</form>
</td>
</tr>
<tr>
<td>I have a brilliant idea</td>
<td>
<form action="">
<input type="checkbox" value="Favorite">
</form>
</td>
</tr>
</table> -->
<script src="js/jquery-1.11.1.js"></script>
<script src="js/bootstrap.js"></script>
<script src='http://ajax.aspnetcdn.com/ajax/mobileservices/MobileServices.Web-1.1.2.min.js'></script>
<script src="js/dataPull.js"></script>
</body>
</html>