summaryrefslogtreecommitdiffstats
path: root/templates/note.html.template
blob: fe6d0731bc20765af35df07e3415f4b7313a7b1c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{{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">
	<input type="hidden" name="csrf-token" value="{{.CSRFToken}}">
	<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>