training-management-system/templates/login.html

12 lines
No EOL
425 B
HTML

{{ template "preamble.html" }}
<h2>Please log in to continue</h2>
<form action="/login" method="POST">
<label for="username">Username:</label>
<input type="text" id="username" name="username" required><br><br>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required><br><br>
<button type="submit">Login</button>
</form>
{{template "epilogue.html" }}