Files
TextbookSoftware/templates/notes.html
2025-11-26 20:03:45 +00:00

16 lines
553 B
HTML

<!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>