forked from mirror/oddmu
Used the web accessibility evaluation tool (WAVE) at wave.webaim.org and fixed some errors.
22 lines
726 B
HTML
22 lines
726 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>Add to {{.Title}}</title>
|
|
<style>
|
|
html { max-width: 70ch; padding: 2ch; margin: auto; color: #111; background: #ffe; }
|
|
form, textarea { width: 100%; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Adding to {{.Title}}</h1>
|
|
<form action="/append/{{.Name}}" method="POST">
|
|
<textarea name="body" rows="20" cols="80" placeholder="Text" lang="" autofocus required></textarea>
|
|
<p><input type="submit" value="Add">
|
|
<a href="/view/{{.Name}}"><button type="button">Cancel</button></a></p>
|
|
</form>
|
|
</body>
|
|
</html>
|