1
0
Fork 0
mirror of https://github.com/Eggbertx/gochan.git synced 2025-09-07 12:46:23 -07:00

Remove unnecessary tags from login template

This commit is contained in:
Eggbertx 2024-12-08 13:28:42 -08:00
parent ba86182941
commit f6338cd6f1

View file

@ -1,8 +1,8 @@
<form method="POST" action="{{webPath `manage/login`}}" id="login-box" class="staff-form">
<input type="hidden" name="redirect" value="{{.redirect}}" />
<table class="login">
<tr><th class="postblock">Login</th><td><input type="text" name="username" class="logindata" autofocus /><br /></td></tr>
<tr><th class="postblock">Password</th><td><input type="password" name="password" class="logindata" /><br /></td></tr>
<tr><th class="postblock">Login</th><td><input type="text" name="username" class="logindata" autofocus /></td></tr>
<tr><th class="postblock">Password</th><td><input type="password" name="password" class="logindata" /></td></tr>
</table>
<input type="submit" value="Login" /></td>
<input type="submit" value="Login" />
</form>