Select Text read_text.html

flask_notes.html

<!DOCTYPE html>
   <html>
   <head>
       <title>Append Notes</title>
   </head>
   <body>
       <h1>Append Notes</h1>
       <form method="POST" action="/append_notes">
           <textarea name="new_content" rows="10" cols="50"></textarea>
           <br>
           <input type="submit" value="Append to Notes">
       </form>
   </body>
   </html>
Back to file list