| 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
|---|
| 2 | <!-- |
|---|
| 3 | Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved. |
|---|
| 4 | For licensing, see LICENSE.html or http://ckeditor.com/license |
|---|
| 5 | --> |
|---|
| 6 | <html xmlns="http://www.w3.org/1999/xhtml"> |
|---|
| 7 | <head> |
|---|
| 8 | <title>Sample - CKEditor</title> |
|---|
| 9 | <meta content="text/html; charset=utf-8" http-equiv="content-type"/> |
|---|
| 10 | <script src="sample.js" type="text/javascript" xml:space="preserve"></script> |
|---|
| 11 | <link href="sample.css" rel="stylesheet" type="text/css"/> |
|---|
| 12 | </head> |
|---|
| 13 | <body> |
|---|
| 14 | <div id="html"> |
|---|
| 15 | <form action="sample_posteddata.php" method="post"> |
|---|
| 16 | <p> |
|---|
| 17 | <label for="editor1"> |
|---|
| 18 | Editor 1:</label><br/> |
|---|
| 19 | <input name="test1" id="test1" value="test" type="text" tabindex="1" /> |
|---|
| 20 | <input name="test2" id="test2" value="0" type="text" tabindex="2" /> |
|---|
| 21 | <input name="test3" id="test3" value="4" type="text" tabindex="3" /> |
|---|
| 22 | <input name="test4" id="test4" value="None" type="text" tabindex="4" /> |
|---|
| 23 | |
|---|
| 24 | <textarea class="ckeditor" cols="80" id="editor1" name="editor1" rows="10" tabindex="5"><p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p></textarea> |
|---|
| 25 | <input name="test5" id="test5" value="0" type="text" tabindex="6" /> |
|---|
| 26 | <input name="test6" value="0" id="test6" type="text" tabindex="7" /> |
|---|
| 27 | <input name="test7" value="" id="test7" type="text" tabindex="8" /> |
|---|
| 28 | </p> |
|---|
| 29 | <p> |
|---|
| 30 | <input type="submit" value="Submit" /> |
|---|
| 31 | </p> |
|---|
| 32 | </form> |
|---|
| 33 | </div> |
|---|
| 34 | <div id="code"> |
|---|
| 35 | <pre> |
|---|
| 36 | <form action=""> |
|---|
| 37 | <p> |
|---|
| 38 | <label for="editor1"> |
|---|
| 39 | Editor 1:</label><br /> |
|---|
| 40 | <textarea id="editor1" name="editor1" <b>class="ckeditor"</b> rows="10" cols="80"><p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p></textarea> |
|---|
| 41 | </p> |
|---|
| 42 | <p> |
|---|
| 43 | <label for="editor2"> |
|---|
| 44 | Editor 2:</label><br /> |
|---|
| 45 | <textarea id="editor2" name="editor2" <b>class="ckeditor"</b> rows="10" cols="80"><p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p></textarea> |
|---|
| 46 | </p> |
|---|
| 47 | <p> |
|---|
| 48 | <input type="submit" value="Submit" /> |
|---|
| 49 | </p> |
|---|
| 50 | </form> |
|---|
| 51 | </pre> |
|---|
| 52 | </div> |
|---|
| 53 | </body> |
|---|
| 54 | </html> |
|---|