bloat/templates/signin.tmpl

13 lines
332 B
Cheetah
Raw Normal View History

2020-01-14 16:57:16 +00:00
{{with .Data}}
{{template "header.tmpl" (WithContext .HeaderData $.Ctx)}}
<div class="page-title"> Signin </div>
<form class="signin-form" action="/signin" method="post">
<input type="text" name="instance" placeholder="instance" required>
2019-12-13 18:08:26 +00:00
<br>
<button type="submit"> Submit </button>
</form>
2019-12-13 18:08:26 +00:00
{{template "footer.tmpl"}}
2020-01-14 16:57:16 +00:00
{{end}}