diff options
Diffstat (limited to 'cgi-bin/template/edit.html')
-rw-r--r-- | cgi-bin/template/edit.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/cgi-bin/template/edit.html b/cgi-bin/template/edit.html index e69de29..27a3dd0 100644 --- a/cgi-bin/template/edit.html +++ b/cgi-bin/template/edit.html @@ -0,0 +1,19 @@ +<html> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>whisper</title> +<body> +<link rel="stylesheet" href="{url}{static}/style.css" type="text/css" /> +<script src="{url}{static}/ckeditor/ckeditor.js"></script> +<div id="container"> + <img src="{url}{static}/logo.png" id="logo"/> + <br/> + <form action="{url}/add.py?action=modify" method="post" class="form_add"> + <input type="hidden" name="whisper_id" value="{whisper_id}"/> + <textarea name="whisper_content" id="editor" class="ckeditor" rows="5" cols="20"> + {whisper_content} + </textarea> + <input type="submit" value=" 推 " class="submit"/> + </form> +</div> +</body> +</html>
\ No newline at end of file |