1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
---|
2 | <html xmlns="http://www.w3.org/1999/xhtml"> |
---|
3 | <head> |
---|
4 | <title>Sample Error</title> |
---|
5 | |
---|
6 | <link type="text/css" rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css"> |
---|
7 | |
---|
8 | <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script> |
---|
9 | <script type="text/javascript" src="http://twitter.github.com/bootstrap/assets/js/bootstrap-modal.js"></script> |
---|
10 | <script type="text/javascript" src="//cdn.jsdelivr.net/ckeditor/4.0/ckeditor.js"></script> |
---|
11 | |
---|
12 | </head> |
---|
13 | <body> |
---|
14 | <a href="#myModal" role="button" class="btn" data-toggle="modal">Launch modal</a> |
---|
15 | |
---|
16 | <!-- Modal --> |
---|
17 | <div id="myModal" class="modal hide fade" tabindex="-1" role="dialog"> |
---|
18 | <div class="modal-body"> |
---|
19 | <p><textarea name="ArticleActive" class="ckeditor" value="Text goes here...">Text goes here...</textarea></p> |
---|
20 | </div> |
---|
21 | <div class="modal-footer"> |
---|
22 | <button class="btn" data-dismiss="modal" aria-hidden="true">Close</button> |
---|
23 | </div> |
---|
24 | </div> |
---|
25 | </body> |
---|
26 | </html> |
---|