Files
hspguard/templates/pages/login.html

18 lines
433 B
HTML

{{ define "content" }}
<form method="POST" action="/api/v1/login">
<label for="email">
Email:
<input type="email" name="email" required>
</label>
<br>
<label for="email">
Password:
<input type="password" name="password" required>
</label>
<br>
<button type="submit">
Login
</button>
</form>
{{ end }}