summaryrefslogtreecommitdiffstats
path: root/templates/note.html.template
blob: 0a88fd6062f328e32257fd843a1189835593fa8d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{{define "head"}}
	<script src="/static/note.js"></script>
	<title>Notepad</title>

	<meta name="viewport" content="interactive-widget=resizes-content"> <!-- https://stackoverflow.com/q/76026292 -->
{{end}}

<form id="form" method="post">
	<div class="save-indicator-container">
		<div id="save-indicator-wrapper">
			{{block "saveIndicator" ""}}
				<span id="save-indicator">{{.}}</span>
			{{end}}
		</div>
		<noscript><input type="submit" value="Save"></noscript>
	</div>
	<div class="content-container">
		<textarea id="content" name="content" oninput="autosave()" autofocus>
			{{- .Content -}}
		</textarea>
	</div>
</form>