Split UI into stages, add simple question form

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 4
0b79c41bf47a
child 6
2ce4c2abf346

Split UI into stages, add simple question form

index.html file | annotate | diff | comparison | revisions
--- a/index.html	Mon Mar 08 14:01:02 2010 +0000
+++ b/index.html	Mon Mar 08 14:20:16 2010 +0000
@@ -16,13 +16,30 @@
 		{
 			float:right;
 		}
+		#support-converse
+		{
+			display:none;
+		}
 	</style>
 </head>
 <body>
 	<div id="support-chat">
-		<div id="support-log">Hello</div>
-		<input id="support-input" type="text" value="Hello" />
-		<input id="support-send-button" type="submit" value="Send" />
+		<div id="support-question">
+			<h2>What is the nature of your question?</h2>
+			<select>
+				<option>Sales</option>
+				<option>Technical</option>
+			</select>
+			<h2>What is your name?</h2>
+			<input id="support-question-type" type="text" />
+			<h2>Your question:</h2>
+			<textarea></textarea>
+		</div>
+		<div id="support-converse">
+			<div id="support-log">Hello</div>
+			<input id="support-input" type="text" value="Hello" />
+			<input id="support-send-button" type="submit" value="Send" />
+		</div>
 	</div>
 </body>
 </html>

mercurial