blob: 069572bc1cb2b783768eb64a9e8b113beda93762 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{{with .Data}}
{{template "header.tmpl" (WithContext .CommonData $.Ctx)}}
<div class="page-title"> Signin </div>
<form class="signin-form" action="/signin" method="post">
<input type="text" name="instance" placeholder="instance" required>
<br>
<button type="submit"> Submit </button>
</form>
{{template "footer.tmpl"}}
{{end}}
|