a mini social media app for small communities
1@include 'partial/header.html' 2 3<script src="/static/js/post.js"></script> 4<script src="/static/js/render_body.js"></script> 5 6<h1>edit post</h1> 7 8<div class="post post-full"> 9 <form action="/api/post/edit" method="post"> 10 <input 11 type="number" 12 name="id" 13 id="id" 14 placeholder="post id" 15 value="@post.id" 16 required 17 readonly 18 hidden 19 aria-hidden 20 > 21 <input 22 type="text" 23 name="title" 24 id="title" 25 minlength="@app.config.post.title_min_len" 26 maxlength="@app.config.post.title_max_len" 27 pattern="@app.config.post.title_pattern" 28 placeholder="title" 29 value="@post.title" 30 required 31 > 32 <br> 33 <textarea 34 name="body" 35 id="body" 36 minlength="@app.config.post.body_min_len" 37 maxlength="@app.config.post.body_max_len" 38 rows="10" 39 cols="30" 40 placeholder="body" 41 required 42 >@post.body</textarea> 43 <br> 44 <input type="submit" value="save"> 45 </form> 46</div> 47 48@include 'partial/footer.html'