commit b81c5af848e10be98dc101243072f5e3a4194e24 parent fc867e5b5042a2865303ebf36d8f35f04f3d400b Author: Peter Kosyh <p.kosyh@gmail.com> Date: Thu, 3 Sep 2020 21:51:37 +0300 forgotten template Diffstat:
| A | ii-node/tpl/new.tpl | | | 11 | +++++++++++ |
1 file changed, 11 insertions(+), 0 deletions(-)
diff --git a/ii-node/tpl/new.tpl b/ii-node/tpl/new.tpl @@ -0,0 +1,11 @@ +{{template "header.tpl" $}} + +<form method="post" enctype="application/x-www-form-urlencoded" action="/{{.Echo}}/new"> +<input type="text" name="subj" class="subj" placeholder="subject"><br> +<input type="text" name="to" class="to" placeholder="To" value="All"><br> +<textarea type="text" name="msg" class="message" cols=60 row=10 placeholder="Text here."></textarea><br> +<br> +<button class="form-button">Submit</button> +</form> + +{{template "footer.tpl"}}