forked from soss/querycafe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (78 loc) · 2.27 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!doctype html>
<html>
<head>
<title>Query Cafe</title>
<link rel="stylesheet" href="assets/css/main.css" />
</head>
<body>
<div id="main_content">
<h1>Query Cafe</h1>
<ul id="tables">
<li class="table">A</li>
<li class="table">B</li>
<li class="table">C</li>
<li class="table">D</li>
<li class="table">E</li>
<li class="table">F</li>
</ul>
<div id="tables_controls">
<button id="highlight_d">Highlight table D</button>
<button id="highlight_all">Highlight all tables</button>
<button id="remove_last">Remove last table</button>
<button id="change_a">Change table A to blue</button>
<button id="change_c">Change table C to green</button>
</div>
<div id="orders_container">
<ul id="orders">
<li class="order">
<span>Selectable Soup</span>
<span class="right">
<input type="checkbox" />
</span>
</li>
<li class="order">
<span>removeClass Ribs</span>
<span class="right">
<input type="checkbox" />
</span>
</li>
<li class="order">
<span>DOM Dinges</span>
<span class="right">
<input type="checkbox" />
</span>
</li>
<li class="order">
<span>Cheesy Example #4</span>
<span class="right">
<input type="checkbox" />
</span>
</li>
<li class="order">
<span>Philly's Cheesesteak</span>
<span class="right">
<input type="checkbox" />
</span>
</li>
</ul>
<form id="new_order" action="">
<input id="order_name" type="text" placeholder="Order Name" />
<input type="submit" value="Place" />
</form>
</div>
<div id="example">
<p>This interface is full of bugs. Your job is to find and fix
them.</p>
<button id="doesitwork">Does it work?</button>
<span id="status">Yes!</span>
<br /><br />
<p>Brought to you by <a
href="http://github.com/soss">SOSS</a>.</p>
</div>
<div class="clear"></div>
</div>
<script
src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>