Files
oddmu/edit.html

24 lines
745 B
HTML
Raw Permalink Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="format-detection" content="telephone=no">
<meta name="viewport" content="width=device-width">
<title>Editing {{.Title}}</title>
2023-08-21 22:59:09 +02:00
<style>
html { max-width: 70ch; padding: 2ch; margin: auto; color: #111; background: #ffe; }
form, textarea { width: 100%; }
</style>
</head>
<body>
<h1>Editing {{.Title}}</h1>
<form action="/save/{{.Name}}" method="POST">
2023-09-14 15:34:58 +02:00
<textarea name="body" rows="20" cols="80" placeholder="# Title
2023-09-11 00:27:11 +02:00
Text" lang="" autofocus>{{printf "%s" .Body}}</textarea>
2023-08-23 16:51:58 +02:00
<p><input type="submit" value="Save">
<a href="/view/{{.Name}}"><button type="button">Cancel</button></a></p>
</form>
</body>
</html>