did some code

This commit is contained in:
2025-11-26 20:03:45 +00:00
parent 0d26b5ade2
commit 6bb7fdd5da
7 changed files with 173 additions and 0 deletions

16
templates/notes.html Normal file
View File

@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Notes</title>
</head>
<body>
<a href="http://localhost:5000/">Home (No save)</a>
<form action="http://localhost:5000/savenotes" method="post">
<input for="path" name="path" type="hidden" value="{{ path }}" style="display: hidden;"></input>
<textarea for="notes" name="notes">{{ notes }}</textarea>
<input type="submit" value="save"></input>
</form>
</body>
</html>