forked from mirror/oddmu
11 lines
261 B
HTML
11 lines
261 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<h1>Editing {{.Title}}</h1>
|
|
<form action="/save/{{.Title}}" method="POST">
|
|
<div><textarea name="body" rows="20" cols="80">{{printf "%s" .Body}}</textarea></div>
|
|
<div><input type="submit" value="Save"></div>
|
|
</form>
|
|
</body>
|
|
</html>
|