blob: 4e55f82d2e1cf9f3a7bb04dba614896be6bd1ec6 (
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
24
25
26
27
|
---
title: Editing Page
description: Editor
|---
<form action="/edit/{{.Vars.Page}}" method="POST">
<br />
<label for="content">Page content:</label><br />
<br />
<textarea id="content" name="content" rows="24" cols="80">
{{.Vars.Content}}
</textarea>
<br />
<input type="submit" value="save">
</form>
<!-- test -->
<script>
window.addEventListener('load', (event) => {
document.querySelector("#edit").remove();
});
</script>
|