added styling to notes page

This commit is contained in:
2025-11-26 21:15:21 +00:00
parent 6bb7fdd5da
commit 18cc9d328d
2 changed files with 30 additions and 3 deletions

View File

@@ -6,11 +6,38 @@
<title>Notes</title> <title>Notes</title>
</head> </head>
<body> <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> <a href="http://localhost:5000/">Home (No save)</a>
<form action="http://localhost:5000/savenotes" method="post"> <form action="http://localhost:5000/savenotes" method="post">
<input for="path" name="path" type="hidden" value="{{ path }}" style="display: hidden;"></input> <input for="path" name="path" type="hidden" value="{{ path }}" style="display: hidden;"></input>
<textarea for="notes" name="notes">{{ notes }}</textarea> <textarea for="notes" name="notes", style="">{{ notes }}</textarea>
<input type="submit" value="save"></input> </br>
<input class="save" type="submit" value="Save"></input>
</form> </form>
</body> </body>
</html> </html>

View File

@@ -1 +1 @@
my notes 12345 My notes