web/templates/account_login.tmpl
2025-08-01 19:48:26 -03:00

13 lines
414 B
Cheetah

{{template "_header.tmpl" .Common}}
<form class="box" action="/account" method="POST">
<h1>Login</h1>
<label for="login_account">ACCOUNT NUMBER</label>
<input id="login_account" type="password" name="account"/>
<label for="login_password">PASSWORD</label>
<input id="login_password" type="password" name="password"/>
<input type="submit" value="Login"/>
</form>
{{template "_footer.tmpl" .Common}}