forked from mirror/oddmu
24 lines
724 B
HTML
24 lines
724 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="format-detection" content="telephone=no">
|
|
<meta name="viewport" content="width=device-width">
|
|
<title>Editing {{.Title}}</title>
|
|
<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">
|
|
<div><textarea name="body" rows="20" cols="80" placeholder="# Title
|
|
|
|
Text" autofocus>{{printf "%s" .Body}}</textarea></div>
|
|
<p><input type="submit" value="Save">
|
|
<a href="/view/{{.Name}}"><button>Cancel</button></a></p>
|
|
</form>
|
|
</body>
|
|
</html>
|