【调度系统】广东民航医疗快线调度系统源代码
wanglizhong
2025-04-21 b8349bc19da36ab153c5466db7d089888a89f955
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title>Smooth Admin</title>
        <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
        <!-- stylesheets -->
        <link rel="stylesheet" type="text/css" href="resources/css/reset.css" />
        <link rel="stylesheet" type="text/css" href="resources/css/style.css" media="screen" />
        <link id="color" rel="stylesheet" type="text/css" href="resources/css/colors/blue.css" />
        <!-- scripts (jquery) -->
        <script src="resources/scripts/jquery-1.4.2.min.js" type="text/javascript"></script>
        <!--[if IE]><script language="javascript" type="text/javascript" src="resources/scripts/excanvas.min.js"></script><![endif]-->
        <script src="resources/scripts/jquery-ui-1.8.custom.min.js" type="text/javascript"></script>
        <script src="resources/scripts/jquery.ui.selectmenu.js" type="text/javascript"></script>
        <script src="resources/scripts/jquery.flot.min.js" type="text/javascript"></script>
        <script src="resources/scripts/tiny_mce/tiny_mce.js" type="text/javascript"></script>
        <script src="resources/scripts/tiny_mce/jquery.tinymce.js" type="text/javascript"></script>
        <!-- scripts (custom) -->
        <script src="resources/scripts/smooth.js" type="text/javascript"></script>
        <script src="resources/scripts/smooth.menu.js" type="text/javascript"></script>
        <script src="resources/scripts/smooth.chart.js" type="text/javascript"></script>
        <script src="resources/scripts/smooth.table.js" type="text/javascript"></script>
        <script src="resources/scripts/smooth.form.js" type="text/javascript"></script>
        <script src="resources/scripts/smooth.dialog.js" type="text/javascript"></script>
        <script src="resources/scripts/smooth.autocomplete.js" type="text/javascript"></script>
        <script type="text/javascript">
            $(document).ready(function () {
                style_path = "resources/css/colors";
 
                $("#date-picker").datepicker();
 
                $("#box-tabs, #box-left-tabs").tabs();
            });
        </script>
    </head>
    <body>
        <div id="colors-switcher" class="color">
            <a href="" class="blue" title="Blue"></a>
            <a href="" class="green" title="Green"></a>
            <a href="" class="brown" title="Brown"></a>
            <a href="" class="purple" title="Purple"></a>
            <a href="" class="red" title="Red"></a>
            <a href="" class="greyblue" title="GreyBlue"></a>
        </div>
        <!-- dialogs -->
        <div id="dialog" title="Basic Dialog">
            <p>This is an animated dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.</p>
        </div>
        <div id="dialog-modal" title="Basic Modal Dialog">
            <p>Adding the modal overlay screen makes the dialog look more prominent because it dims out the page content.</p>
        </div>
        <div id="dialog-message" title="Download Complete">
            <p><span class="ui-icon ui-icon-circle-check" style="float:left; margin:0 7px 50px 0;"></span>Your files have downloaded successfully into the My Downloads folder.</p>
            <p>Currently using <b>36% of your storage space</b>.</p>
        </div>
        <div id="dialog-confirm" title="Empty the Recycle Bin?">
            <p><span class="ui-icon ui-icon-alert" style="float:left; margin:0 7px 20px 0;"></span>These items will be permanently deleted and cannot be recovered. Are you sure?</p>
        </div>
        <div id="dialog-form" title="Create new user">
            <p>All form fields are required.</p>
            <form action="" method="post">
            <div class="form">
                <div class="fields">
                    <div class="field field-first">
                        <div class="label">
                            <label for="input">Name:</label>
                        </div>
                        <div class="input">
                            <input type="text" id="user-name" name="user.name" />
                        </div>
                    </div>
                    <div class="field">
                        <div class="label">
                            <label for="input">Email:</label>
                        </div>
                        <div class="input">
                            <input type="text" id="user-email" name="user.email" />
                        </div>
                    </div>
                    <div class="field">
                        <div class="label">
                            <label for="input">Password:</label>
                        </div>
                        <div class="input">
                            <input type="text" id="user-password" name="user.password" />
                        </div>
                    </div>
                </div>
            </div>
            </form>
        </div>
        <!-- end dialogs -->
        <!-- header -->
        <div id="header">
            <!-- logo -->
            <div id="logo">
                <h1><a href="" title="Smooth Admin"><img src="resources/images/logo.png" alt="Smooth Admin" /></a></h1>
            </div>
            <!-- end logo -->
            <!-- user -->
            <ul id="user">
                <li class="first"><a href="">Account</a></li>
                <li><a href="">Messages (0)</a></li>
                <li><a href="">Logout</a></li>
                <li class="highlight last"><a href="">View Site</a></li>
            </ul>
            <!-- end user -->
            <div id="header-inner">
                <div id="home">
                    <a href="" title="Home"></a>
                </div>
                <!-- quick -->
                <ul id="quick">
                    <li>
                        <a href="#" title="Products"><span class="normal">Examples</span></a>
                        <ul>
                            <li><a href="index.html">Full, Column</a></li>
                            <li><a href="index-no-column.html">Full, No Column</a></li>
                            <li><a href="index-fixed.html">Fixed, Column</a></li>
                            <li class="last"><a href="index-fixed-no-column.html">Fixed, No Column</a></li>
                        </ul>
                    </li>
                    <li>
                        <a href="#" title="Products"><span class="icon"><img src="resources/images/icons/application_double.png" alt="Products" /></span><span>Products</span></a>
                        <ul>
                            <li><a href="#">Manage Products</a></li>
                            <li><a href="#">Add Product</a></li>
                            <li>
                                <a href="#" class="childs">Sales</a>
                                <ul>
                                    <li><a href="">Today</a></li>
                                    <li class="last"><a href="">Yesterday</a></li>
                                </ul>
                            </li>
                            <li class="last">
                                <a href="#" class="childs">Offers</a>
                                <ul>
                                    <li><a href="">Coupon Codes</a></li>
                                    <li class="last"><a href="">Rebates</a></li>
                                </ul>
                            </li>
                        </ul>
                    </li>
                    <li>
                        <a href="" title="Events"><span class="icon"><img src="resources/images/icons/calendar.png" alt="Events" /></span><span>Events</span></a>
                        <ul>
                            <li><a href="#">Manage Events</a></li>
                            <li class="last"><a href="#">New Event</a></li>
                        </ul>
                    </li>
                    <li>
                        <a href="" title="Pages"><span class="icon"><img src="resources/images/icons/page_white_copy.png" alt="Pages" /></span><span>Pages</span></a>
                        <ul>
                            <li><a href="#">Manage Pages</a></li>
                            <li><a href="#">New Page</a></li>
                            <li class="last">
                                <a href="#" class="childs">Help</a>
                                <ul>
                                    <li><a href="#">How to Add a New Page</a></li>
                                    <li class="last"><a href="#">How to Add a New Page</a></li>
                                </ul>
                            </li>
                        </ul>
                    </li>
                    <li>
                        <a href="" title="Links"><span class="icon"><img src="resources/images/icons/world_link.png" alt="Links" /></span><span>Links</span></a>
                        <ul>
                            <li><a href="#">Manage Links</a></li>
                            <li class="last"><a href="#">Add Link</a></li>
                        </ul>
                    </li>
                    <li>
                        <a href="" title="Settings"><span class="icon"><img src="resources/images/icons/cog.png" alt="Settings" /></span><span>Settings</span></a>
                        <ul>
                            <li><a href="#">Manage Settings</a></li>
                            <li class="last"><a href="#">New Setting</a></li>
                        </ul>
                    </li>
                </ul>
                <!-- end quick -->
                <div class="corner tl"></div>
                <div class="corner tr"></div>
            </div>
        </div>
        <!-- end header -->
        <!-- content -->
        <div id="content">
            <!-- end content / left -->
            <div id="left">
                <div id="menu">
                    <h6 id="h-menu-products" class="selected"><a href="#products"><span>Products</span></a></h6>
                    <ul id="menu-products" class="opened">
                        <li><a href="">Manage Products</a></li>
                        <li><a href="">Add Product</a></li>
                        <li class="collapsible">
                            <a href="#" class="plus">Sales</a>
                            <ul class="collapsed">
                                <li><a href="">Today</a></li>
                                <li class="last"><a href="">Yesterday</a></li>
                            </ul>
                        </li>
                        <li class="collapsible last">
                            <a href="#" class="plus">Offers</a>
                            <ul class="collapsed">
                                <li><a href="">Coupon Codes</a></li>
                                <li class="last"><a href="">Rebates</a></li>
                            </ul>
                        </li>
                    </ul>
                    <h6 id="h-menu-pages"><a href="#pages"><span>Pages</span></a></h6>
                    <ul id="menu-pages" class="closed">
                        <li><a href="">Manage Pages</a></li>
                        <li><a href="">New Page</a></li>
                        <li class="collapsible last">
                            <a href="#" class="plus">Help</a>
                            <ul class="collapsed">
                                <li><a href="">How to Add a New Page</a></li>
                                <li class="last"><a href="">How to Add a New Page</a></li>
                            </ul>
                        </li>
                    </ul>
                    <h6 id="h-menu-events"><a href="#events"><span>Events</span></a></h6>
                    <ul id="menu-events" class="closed">
                        <li><a href="">Manage Events</a></li>
                        <li class="last"><a href="">New Event</a></li>
                    </ul>
                    <h6 id="h-menu-links"><a href="#links"><span>Links</span></a></h6>
                    <ul id="menu-links" class="closed">
                        <li><a href="">Manage Links</a></li>
                        <li class="last"><a href="">Add Link</a></li>
                    </ul>
                    <h6 id="h-menu-settings"><a href="#settings"><span>Settings</span></a></h6>
                    <ul id="menu-settings" class="closed">
                        <li><a href="">Manage Settings</a></li>
                        <li class="last"><a href="">New Setting</a></li>
                    </ul>
                </div>
                <div id="date-picker"></div>
            </div>
            <!-- end content / left -->
            <!-- content / right -->
            <div id="right">
                <!-- table -->
                <div class="box">
                    <!-- box / title -->
                    <div class="title">
                        <h5>Products</h5>
                        <div class="search">
                            <form action="#" method="post">
                                <div class="input">
                                    <input type="text" id="search" name="search" />
                                </div>
                                <div class="button">
                                    <input type="submit" name="submit" value="Search" />
                                </div>
                            </form>
                        </div>
                    </div>
                    <!-- end box / title -->
                    <div class="table">
                        <form action="" method="post">
                        <table>
                            <thead>
                                <tr>
                                    <th class="left">Title</th>
                                    <th>Price</th>
                                    <th>Added</th>
                                    <th>Category</th>
                                    <th class="selected last"><input type="checkbox" class="checkall" /></th>
                                </tr>
                            </thead>
                            <tbody>
                                <tr>
                                    <td class="title">24" LED Monitor</td>
                                    <td class="price">$110.00</td>
                                    <td class="date">April 25th, 2010 at 4:15 PM</td>
                                    <td class="category">Monitors</td>
                                    <td class="selected last"><input type="checkbox" /></td>
                                </tr>
                                <tr>
                                    <td class="title">27" LCD Flat Panel</td>
                                    <td class="price">$150.00</td>
                                    <td class="date">April 25th, 2010 at 4:15 PM</td>
                                    <td class="category">Monitors</td>
                                    <td class="selected last"><input type="checkbox" /></td>
                                </tr>
                                <tr>
                                    <td class="title">6GB 240-Pin DDR3 SDRAM DDR3 1600</td>
                                    <td class="price">$80.00</td>
                                    <td class="date">April 25th, 2010 at 4:15 PM</td>
                                    <td class="category">Memory</td>
                                    <td class="selected last"><input type="checkbox" /></td>
                                </tr>
                                <tr>
                                    <td class="title">500GB 7200 RPM 16MB Cache SATA 3.0Gb/s 3.5</td>
                                    <td class="price">$92.00</td>
                                    <td class="date">April 25th, 2010 at 4:15 PM</td>
                                    <td class="category">Hard Drives</td>
                                    <td class="selected last"><input type="checkbox" /></td>
                                </tr>
                                <tr>
                                    <td class="title">2GB 240-Pin DDR3 SDRAM DDR3 1600</td>
                                    <td class="price">$52.00</td>
                                    <td class="date">April 25th, 2010 at 4:15 PM</td>
                                    <td class="category">Memory</td>
                                    <td class="selected last"><input type="checkbox" /></td>
                                </tr>
                            </tbody>
                        </table>
                        <!-- pagination -->
                        <div class="pagination pagination-left">
                            <div class="results">
                                <span>showing results 1-10 of 207</span>
                            </div>
                            <ul class="pager">
                                <li class="disabled">&laquo; prev</li>
                                <li class="current">1</li>
                                <li><a href="">2</a></li>
                                <li><a href="">3</a></li>
                                <li><a href="">4</a></li>
                                <li><a href="">5</a></li>
                                <li class="separator">...</li>
                                <li><a href="">20</a></li>
                                <li><a href="">21</a></li>
                                <li><a href="">next &raquo;</a></li>
                            </ul>
                        </div>
                        <!-- end pagination -->
                        <!-- table action -->
                        <div class="action">
                            <select name="action">
                                <option value="" class="locked">Set status to Deleted</option>
                                <option value="" class="unlocked">Set status to Published</option>
                                <option value="" class="folder-open">Move to Category</option>
                            </select>
                            <div class="button">
                                <input type="button" name="submit" value="Apply to Selected" />
                            </div>
                        </div>
                        <!-- end table action -->
                        </form>
                    </div>
                </div>
                <!-- end table -->
                <div class="box">
                    <!-- box / title -->
                    <div class="title">
                        <h5>Product Sales</h5>
                        <ul class="links">
                            <li><a href="">Full Report</a></li>
                        </ul>
                    </div>
                    <!-- end box / title -->
                    <div class="sales">
                        <div class="legend">
                            <h6>Units Sold (April 1st to April 15th)</h6>
                            <ul>
                                <li class="monitors">Monitors</li>
                                <li class="memory">Memory</li>
                            </ul>
                        </div>
                        <div id="sales"></div>
                    </div>
                </div>
                <!-- messages -->
                <div id="box-tabs" class="box">
                    <!-- box / title -->
                    <div class="title">
                        <h5>Content Box</h5>
                        <ul class="links">
                            <li><a href="#box-messages">Messages</a></li>
                            <li><a href="#box-other">Typography</a></li>
                            <li><a href="#box-dialogs">Dialogs</a></li>
                        </ul>
                    </div>
                    <!-- box / title -->
                    <div id="box-messages">
                        <div class="messages">
                            <div id="message-error" class="message message-error">
                                <div class="image">
                                    <img src="resources/images/icons/error.png" alt="Error" height="32" />
                                </div>
                                <div class="text">
                                    <h6>Error Message</h6>
                                    <span>This is the error message.</span>
                                </div>
                                <div class="dismiss">
                                    <a href="#message-error"></a>
                                </div>
                            </div>
                            <div id="message-warning" class="message message-warning">
                                <div class="image">
                                    <img src="resources/images/icons/warning.png" alt="Warning" height="32" />
                                </div>
                                <div class="text">
                                    <h6>Warning Message</h6>
                                    <span>This is the warning message.</span>
                                </div>
                                <div class="dismiss">
                                    <a href="#message-warning"></a>
                                </div>
                            </div>
                            <div id="message-notice" class="message message-notice">
                                <div class="image">
                                    <img src="resources/images/icons/notice.png" alt="Notice" height="32" />
                                </div>
                                <div class="text">
                                    <h6>Notice Message</h6>
                                    <span>This is the notice message.</span>
                                </div>
                                <div class="dismiss">
                                    <a href="#message-notice"></a>
                                </div>
                            </div>
                            <div id="message-success" class="message message-success">
                                <div class="image">
                                    <img src="resources/images/icons/success.png" alt="Success" height="32" />
                                </div>
                                <div class="text">
                                    <h6>Success Message</h6>
                                    <span>This is the success message.</span>
                                </div>
                                <div class="dismiss">
                                    <a href="#message-success"></a>
                                </div>
                            </div>
                        </div>
                    </div>
                    <div id="box-other">
                        <!-- paragraphs -->
                        <p class="start"><img src="resources/images/misc/ginger.jpg" alt="Ginger" class="right" />Lorem ipsum dolor sit amet, consectetur <a href="">adipisicing</a> elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
                        <p>Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
                        <!-- end paragraphs -->
                        <!-- headings -->
                        <h5>Heading</h5>
                        <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
                        <blockquote><p>Lorem ipsum dolor sit amet, consectetur <a href="">adipisicing</a> elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p></blockquote>
                        <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
                        <!-- end headings -->
                    </div>
                    <div id="box-dialogs">
                        <p><a id="dialog-open" href="#">Open Dialog</a></p>
                        <p><a id="dialog-modal-open" href="#">Open Modal Dialog</a></p>
                        <p><a id="dialog-message-open" href="#">Open Modal Message Dialog</a></p>
                        <p><a id="dialog-confirm-open" href="#">Open Modal Confirmation Dialog</a></p>
                        <p><a id="dialog-form-open" href="#">Open Form Dialog</a></p>
                    </div>
                </div>
                <!-- end messages -->
                <!-- forms -->
                <div class="box">
                    <!-- box / title -->
                    <div class="title">
                        <h5>Forms</h5>
                    </div>
                    <!-- end box / title -->
                    <form id="form" action="" method="post">
                    <div class="form">
                        <div class="fields">
                            <div class="field  field-first">
                                <div class="label">
                                    <label for="input-small">Small Input:</label>
                                </div>
                                <div class="input">
                                    <input type="text" id="input-small" name="input.small" class="small" />
                                    <div class="button highlight">
                                        <input type="submit" name="submit.highlight" value="Submit Empathized" />
                                    </div>
                                </div>
                            </div>
                            <div class="field">
                                <div class="label">
                                    <label for="input-medium">Medium Input:</label>
                                </div>
                                <div class="input">
                                    <input type="text" id="input-medium" name="input.medium" class="medium" />
                                </div>
                            </div>
                            <div class="field">
                                <div class="label">
                                    <label for="input-large">Large Input:</label>
                                </div>
                                <div class="input">
                                    <input type="text" id="input-large" name="input.large" class="large" />
                                </div>
                            </div>
                            <div class="field">
                                <div class="label">
                                    <label for="autocomplete">Auto Complete:</label>
                                </div>
                                <div class="input">
                                    <input type="text" id="autocomplete" name="input.autocomplete" value="start typing for example: java" class="small focus" />
                                </div>
                            </div>
                            <div class="field">
                                <div class="label">
                                    <label for="date">Date Picker:</label>
                                </div>
                                <div class="input">
                                    <input type="text" id="date" name="input.date" class="date" />
                                </div>
                            </div>
                            <div class="field">
                                <div class="label">
                                    <label for="input-error">Error Input:</label>
                                </div>
                                <div class="input">
                                    <input type="text" id="input-error" name="input.error" class="small error" />
                                    <span class="error">This is a required field.</span>
                                </div>
                            </div>
                            <div class="field">
                                <div class="label">
                                    <label for="input-valid">Valid Input:</label>
                                </div>
                                <div class="input">
                                    <input type="text" id="input-valid" name="input.valid" class="small valid" />
                                </div>
                            </div>
                            <div class="field">
                                <div class="label">
                                    <label for="select">Select:</label>
                                </div>
                                <div class="select">
                                    <select id="select" name="select">
                                        <option value="1">Option #1</option>
                                        <option value="2">Option #2</option>
                                        <option value="3">Option #3</option>
                                    </select>
                                </div>
                            </div>
                            <div class="field">
                                <div class="label label-checkbox">
                                    <label>Checkboxes:</label>
                                </div>
                                <div class="checkboxes">
                                    <div class="checkbox">
                                        <input type="checkbox" id="checkbox-1" name="checkboxex" />
                                        <label for="checkbox-1">Option #1</label>
                                    </div>
                                    <div class="checkbox">
                                        <input type="checkbox" id="checkbox-2" name="checkboxex" />
                                        <label for="checkbox-2">Option #2</label>
                                    </div>
                                    <div class="checkbox">
                                        <input type="checkbox" id="checkbox-3" name="checkboxex" />
                                        <label for="checkbox-3">Option #3</label>
                                    </div>
                                </div>
                            </div>
                            <div class="field">
                                <div class="label label-radio">
                                    <label>Radios:</label>
                                </div>
                                <div class="radios">
                                    <div class="radio">
                                        <input type="radio" id="radio-1" name="radioex" />
                                        <label for="radio-1">Option #1</label>
                                    </div>
                                    <div class="radio">
                                        <input type="radio" id="radio-2" name="radioex" />
                                        <label for="radio-2">Option #2</label>
                                    </div>
                                    <div class="radio">
                                        <input type="radio" id="radio-3" name="radioex" />
                                        <label for="radio-3">Option #3</label>
                                    </div>
                                </div>
                            </div>
                            <div class="field">
                                <div class="label">
                                    <label for="file">File:</label>
                                </div>
                                <div class="input input-file">
                                    <input type="file" id="file" name="file" size="40" />
                                </div>
                            </div>
                            <div class="field">
                                <div class="label label-textarea">
                                    <label for="textarea">Textarea:</label>
                                </div>
                                <div class="textarea textarea-editor">
                                    <textarea id="textarea" name="textarea" cols="50" rows="12" class="editor"></textarea>
                                </div>
                            </div>
                            <div class="buttons">
                                <input type="submit" name="submit" value="Submit" />
                                <input type="reset" name="reset" value="Reset" />
                                <div class="highlight">
                                    <input type="submit" name="submit.highlight" value="Submit Empathized" />
                                </div>
                            </div>
                        </div>
                    </div>
                    </form>
                </div>
                <!-- end forms -->
                <!-- box / left -->
                <div id="box-left-tabs" class="box box-left box-padding">
                    <!-- box / title -->
                    <div class="title">
                        <h5>Left Column</h5>
                        <ul class="links">
                            <li><a href="#box-left-forms">Tab #1</a></li>
                            <li><a href="#box-left-other">Tab #2</a></li>
                        </ul>
                    </div>
                    <!-- end box / title -->
                    <div id="box-left-forms">
                        <form action="" method="post">
                        <div class="form">
                            <div class="fields">
                                <div class="field field-first">
                                    <div class="label">
                                        <label for="input">Textbox:</label>
                                    </div>
                                    <div class="input">
                                        <input type="text" id="input" name="input" />
                                    </div>
                                </div>
                                <div class="field">
                                    <div class="label label-textarea">
                                        <label for="textarea">Textarea:</label>
                                    </div>
                                    <div class="textarea">
                                        <textarea id="textarea1" name="textarea" cols="50" rows="8"></textarea>
                                    </div>
                                </div>
                                <div class="buttons">
                                    <input type="submit" name="submit" value="Submit" />
                                    <input type="reset" name="reset" value="Reset" />
                                </div>
                            </div>
                        </div>
                        </form>
                    </div>
                    <div id="box-left-other">
                        <!-- paragraphs -->
                        <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
                        <blockquote><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p></blockquote>
                        <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
                        <!-- end paragraphs -->
                    </div>
                </div>
                <!-- end box / left -->
                <!-- box / right -->
                <div class="box box-right">
                    <!-- box / title -->
                    <div class="title">
                        <h5>Right Column</h5>
                    </div>
                    <!-- end box / title -->
                    <!-- paragraphs -->
                    <p class="start"><img src="resources/images/misc/ginger.jpg" alt="Ginger" class="right" />Lorem ipsum dolor sit amet, consectetur <a href="">adipisicing</a> elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
                    <p>Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
                    <!-- end paragraphs -->
                    <!-- headings -->
                    <h1>Heading</h1>
                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
                    <blockquote><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p></blockquote>
                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
                    <h2>Heading</h2>
                    <ol class="decimal">
                        <li>List Item 1</li>
                        <li>List Item 2</li>
                        <li>List Item 3</li>
                    </ol>
                    <h3>Heading</h3>
                    <ul class="disc">
                        <li>List Item 1</li>
                        <li>List Item 2</li>
                        <li>List Item 3</li>
                    </ul>
                    <h4>Heading</h4>
                    <ul class="square">
                        <li>List Item 1</li>
                        <li>List Item 2</li>
                        <li>List Item 3</li>
                    </ul>
                    <h5>Heading</h5>
                    <dl>
                        <dt>Definition List Title</dt>
                        <dd>This is a definition list division.</dd>
                    </dl>
                    <!-- end headings -->
                </div>
                <!-- end box / right -->
            </div>
            <!-- end content / right -->
        </div>
        <!-- end content -->
        <!-- footer -->
        <div id="footer">
            <p>Copyright &copy; 2000-2010 Your Company. All Rights Reserved.</p>
        </div>
        <!-- end footert -->
    </body>
</html>