diff options
Diffstat (limited to 'apioforum/templates/edit_post.html')
-rw-r--r-- | apioforum/templates/edit_post.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/apioforum/templates/edit_post.html b/apioforum/templates/edit_post.html index d8eac58..8e8120d 100644 --- a/apioforum/templates/edit_post.html +++ b/apioforum/templates/edit_post.html @@ -6,7 +6,9 @@ {% block content %} <form method="post"> -<textarea name="newcontent">{{post.content}}</textarea> -<input type="submit" value="go"> +<textarea class="new-post-box" name="newcontent">{{post.content}}</textarea> +<p>confirm edit?</p> +<input type="submit" value="confirm"> +<a href="{{url_for('thread.view_thread',thread_id=post.thread)}}">cancel</a> </form> {% endblock %} |