9 lines
232 B
HTML
9 lines
232 B
HTML
{{ define "title" }}Confirm{{ end }}
|
|
{{ define "main" }}
|
|
<h1>Confirm new Tx</h1>
|
|
<form action="/submit" method="POST">
|
|
<textarea name="tx" rows="15" cols="40">{{ .Tx }}</textarea><br>
|
|
<input type="submit">
|
|
</form>
|
|
{{ end }}
|