mirror of
https://github.com/rjNemo/go-wiki
synced 2026-06-09 03:56:43 +00:00
19 lines
587 B
HTML
19 lines
587 B
HTML
{{define "title"}} {{.Title}} | Go-Wiki {{end}} {{define "content"}}
|
|
<h1>Editing {{.Title}}</h1>
|
|
|
|
<form action="/save/{{.Title}}" method="POST">
|
|
<div class="form-group">
|
|
<label for="title">Title</label>
|
|
<input type="text" name="title" class="form-control" value="{{.Title}}" />
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="body">Body</label>
|
|
<textarea class="form-control" name="body" rows="10">
|
|
{{printf "%s" .Body}}
|
|
</textarea>
|
|
</div>
|
|
<div class="form-group">
|
|
<input type="submit" value="Save" class="btn btn-primary" />
|
|
</div>
|
|
</form>
|
|
{{end}}
|