forked from mirror/oddmu
Used the web accessibility evaluation tool (WAVE) at wave.webaim.org and fixed some errors.
24 lines
745 B
HTML
24 lines
745 B
HTML
<!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>
|
|
<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">
|
|
<textarea name="body" rows="20" cols="80" placeholder="# Title
|
|
|
|
Text" lang="" autofocus>{{printf "%s" .Body}}</textarea>
|
|
<p><input type="submit" value="Save">
|
|
<a href="/view/{{.Name}}"><button type="button">Cancel</button></a></p>
|
|
</form>
|
|
</body>
|
|
</html>
|