Files
TextbookSoftware/templates/notes.html
2025-11-28 16:52:52 +00:00

45 lines
1.1 KiB
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>
<style>
body{
background-image: url("static/background.jpg");
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: white;
text-align: center;
}
a{
color: white;
}
div{
max-width: 50vw;
margin: auto;
}
form{
margin-top: 2vh;
}
.save{
width: 50vw;
}
textarea{
width: 50vw;
height: 80vh;
resize: none;
}
</style>
<a href="http://localhost:5000/">Home (No save)</a>
<div>
<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>
</br>
<input class="save" type="submit" value="Save"></input>
</form>
</div>
</body>
</html>