summaryrefslogtreecommitdiff
path: root/template/edit.html
blob: bc8cea01b0d3b9fc9a804ae47f4bf8049222f4b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<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"/>
		<a style="float:right; color:red" href="{url}/delete.py?w={whisper_id}">删除</a>
	</form>
</div>
</body>
</html>