notes/templates/note.html

23 lines
586 B
HTML
Raw Permalink Normal View History

2025-06-03 14:00:58 +02:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
2025-06-06 16:20:05 +02:00
<div id="username" style="display: none;">{{ username }}</div>
2025-06-03 14:00:58 +02:00
<title> {{ note }} </title>
<style>
textarea { width: 100%; height: 90vh; font-family: monospace; font-size: 1em; }
#status { font-size: 0.9em; color: gray; }
</style>
</head>
<body>
<div id="error"></div>
2025-06-03 14:00:58 +02:00
<textarea id="editor" placeholder="Type here!"></textarea>
<div id="status">Loading...</div>
<script>
const noteName = "{{ note|e }}";
</script>
<script src="{{ url_for('static', filename='note.js') }}"></script>
</body>
</html>