25 lines
658 B
HTML
25 lines
658 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<div id="username" style="display: none;">{{ username }}</div>
|
|
<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>
|
|
<textarea id="editor" placeholder="Type here!"></textarea>
|
|
<div id="status">Loading...</div>
|
|
<script>
|
|
const noteName = "{{ note|e }}";
|
|
</script>
|
|
<script src="https://cdn.socket.io/4.4.1/socket.io.min.js"></script>
|
|
<script src="{{ url_for('static', filename='note.js') }}"></script>
|
|
</body>
|
|
|
|
</html>
|
|
|