18 lines
501 B
HTML
18 lines
501 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
{{template "head.html" .}} <!-- Include header template -->
|
|
|
|
<body>
|
|
{{template "header.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>
|
|
</body>
|
|
</html>
|