30 lines
683 B
HTML
30 lines
683 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Quick Notes</title>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<meta property="og:title" content="Dendron Quick Notes" />
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:url" content="https://qn.wntrmute.dev/" />
|
|
<style>
|
|
* { font-size: xx-large; }
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<h2>Quick Note</h2>
|
|
{{ if (ne .Message "") }}
|
|
<p>{{.Message}}</p>
|
|
{{ end }}
|
|
<form action="/" method="POST">
|
|
<textarea id="note" name="note" rows="24" cols="80">
|
|
</textarea>
|
|
<br />
|
|
<input type="submit" value="Submit">
|
|
</form>
|
|
</body>
|
|
</html>
|
|
|