initial import
This commit is contained in:
29
handler/templates/index.html
Normal file
29
handler/templates/index.html
Normal file
@@ -0,0 +1,29 @@
|
||||
<!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>
|
||||
|
||||
Reference in New Issue
Block a user