diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-10-04 17:30:55 -0700 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-10-04 17:30:55 -0700 |
commit | 0b82bdfe1da6884dbfdf0c48611115ea3c7babd8 (patch) | |
tree | aaf0746b6419f8a3b1618dfac0801c0e4056d39f | |
parent | 37bfeecd637d5d79ae9f33e61f6d87407024910a (diff) |
fixing small submit button issue
-rw-r--r-- | management/editor/editor.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/management/editor/editor.go b/management/editor/editor.go index c0f2e49..cba4396 100644 --- a/management/editor/editor.go +++ b/management/editor/editor.go @@ -47,7 +47,7 @@ func Form(post Editable, fields ...Field) ([]byte, error) { submit := ` <div class="input-field"> - <input class="right waves-effect waves-light btn green" type="submit" value="Save"/> + <button class="right waves-effect waves-light btn green" type="submit">Save</button> </div> ` editor.ViewBuf.Write([]byte(submit + `</td></tr></tbody></table>`)) |