index.html

Mon, 08 Mar 2010 14:20:16 +0000

author
Matthew Wild <mwild1@gmail.com>
date
Mon, 08 Mar 2010 14:20:16 +0000
changeset 5
10712e3ac061
parent 2
ec7dc98a811d
child 6
2ce4c2abf346
permissions
-rw-r--r--

Split UI into stages, add simple question form

0
84917e0f649d Commit skeleton HTML page
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
1 <html>
84917e0f649d Commit skeleton HTML page
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
2 <head>
1
472c3486b43e Add jQuery 1.4.2
Matthew Wild <mwild1@gmail.com>
parents: 0
diff changeset
3 <script type="text/javascript" src="js/jquery-1.4.2.min.js"></script>
2
ec7dc98a811d Hide UI by default, include supportchat.js
Matthew Wild <mwild1@gmail.com>
parents: 1
diff changeset
4 <script type="text/javascript" src="js/supportchat.js"></script>
1
472c3486b43e Add jQuery 1.4.2
Matthew Wild <mwild1@gmail.com>
parents: 0
diff changeset
5
0
84917e0f649d Commit skeleton HTML page
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
6 <style type="text/css">
84917e0f649d Commit skeleton HTML page
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
7 #support-chat
84917e0f649d Commit skeleton HTML page
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
8 {
2
ec7dc98a811d Hide UI by default, include supportchat.js
Matthew Wild <mwild1@gmail.com>
parents: 1
diff changeset
9 display:none;
0
84917e0f649d Commit skeleton HTML page
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
10 }
84917e0f649d Commit skeleton HTML page
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
11 #support-input
84917e0f649d Commit skeleton HTML page
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
12 {
84917e0f649d Commit skeleton HTML page
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
13 width:100%;
84917e0f649d Commit skeleton HTML page
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
14 }
84917e0f649d Commit skeleton HTML page
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
15 #support-send-button
84917e0f649d Commit skeleton HTML page
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
16 {
84917e0f649d Commit skeleton HTML page
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
17 float:right;
84917e0f649d Commit skeleton HTML page
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
18 }
5
10712e3ac061 Split UI into stages, add simple question form
Matthew Wild <mwild1@gmail.com>
parents: 2
diff changeset
19 #support-converse
10712e3ac061 Split UI into stages, add simple question form
Matthew Wild <mwild1@gmail.com>
parents: 2
diff changeset
20 {
10712e3ac061 Split UI into stages, add simple question form
Matthew Wild <mwild1@gmail.com>
parents: 2
diff changeset
21 display:none;
10712e3ac061 Split UI into stages, add simple question form
Matthew Wild <mwild1@gmail.com>
parents: 2
diff changeset
22 }
0
84917e0f649d Commit skeleton HTML page
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
23 </style>
84917e0f649d Commit skeleton HTML page
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
24 </head>
84917e0f649d Commit skeleton HTML page
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
25 <body>
84917e0f649d Commit skeleton HTML page
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
26 <div id="support-chat">
5
10712e3ac061 Split UI into stages, add simple question form
Matthew Wild <mwild1@gmail.com>
parents: 2
diff changeset
27 <div id="support-question">
10712e3ac061 Split UI into stages, add simple question form
Matthew Wild <mwild1@gmail.com>
parents: 2
diff changeset
28 <h2>What is the nature of your question?</h2>
10712e3ac061 Split UI into stages, add simple question form
Matthew Wild <mwild1@gmail.com>
parents: 2
diff changeset
29 <select>
10712e3ac061 Split UI into stages, add simple question form
Matthew Wild <mwild1@gmail.com>
parents: 2
diff changeset
30 <option>Sales</option>
10712e3ac061 Split UI into stages, add simple question form
Matthew Wild <mwild1@gmail.com>
parents: 2
diff changeset
31 <option>Technical</option>
10712e3ac061 Split UI into stages, add simple question form
Matthew Wild <mwild1@gmail.com>
parents: 2
diff changeset
32 </select>
10712e3ac061 Split UI into stages, add simple question form
Matthew Wild <mwild1@gmail.com>
parents: 2
diff changeset
33 <h2>What is your name?</h2>
10712e3ac061 Split UI into stages, add simple question form
Matthew Wild <mwild1@gmail.com>
parents: 2
diff changeset
34 <input id="support-question-type" type="text" />
10712e3ac061 Split UI into stages, add simple question form
Matthew Wild <mwild1@gmail.com>
parents: 2
diff changeset
35 <h2>Your question:</h2>
10712e3ac061 Split UI into stages, add simple question form
Matthew Wild <mwild1@gmail.com>
parents: 2
diff changeset
36 <textarea></textarea>
10712e3ac061 Split UI into stages, add simple question form
Matthew Wild <mwild1@gmail.com>
parents: 2
diff changeset
37 </div>
10712e3ac061 Split UI into stages, add simple question form
Matthew Wild <mwild1@gmail.com>
parents: 2
diff changeset
38 <div id="support-converse">
10712e3ac061 Split UI into stages, add simple question form
Matthew Wild <mwild1@gmail.com>
parents: 2
diff changeset
39 <div id="support-log">Hello</div>
10712e3ac061 Split UI into stages, add simple question form
Matthew Wild <mwild1@gmail.com>
parents: 2
diff changeset
40 <input id="support-input" type="text" value="Hello" />
10712e3ac061 Split UI into stages, add simple question form
Matthew Wild <mwild1@gmail.com>
parents: 2
diff changeset
41 <input id="support-send-button" type="submit" value="Send" />
10712e3ac061 Split UI into stages, add simple question form
Matthew Wild <mwild1@gmail.com>
parents: 2
diff changeset
42 </div>
0
84917e0f649d Commit skeleton HTML page
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
43 </div>
84917e0f649d Commit skeleton HTML page
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
44 </body>
84917e0f649d Commit skeleton HTML page
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
45 </html>

mercurial