We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7dd980 commit 2202423Copy full SHA for 2202423
My_path_team9/student/templates/edit_post.html
@@ -0,0 +1,13 @@
1
+{% extends 'base.html' %}
2
+{% block content %}
3
+<div class="container">
4
+ <div class="student-box">
5
+ <h1>Edit Post</h1>
6
+ <form method="POST">
7
+ <textarea name="content" rows="4" style="width: 100%;">{{ post.content }}</textarea>
8
+ <br><br>
9
+ <button type="submit" class="view-btn">Update</button>
10
+ </form>
11
+ </div>
12
+</div>
13
+{% endblock %}
0 commit comments