+++ /dev/null
-<!DOCTYPE html>
-<html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Broadcaster Log In</title>
- </head>
- <body>
- <main>
- <h1>Log In</h1>
- <form action="/login" method="post">
- {{if ne .Error ""}}
- <p><b>{{.Error}}</b></p>
- {{end}}
- <label for="username">Username:</label><br>
- <input type="text" id="username" name="username"><br>
- <label for="password">Password:</label><br>
- <input type="password" id="password" name="password"><br>
- <input type="submit" value="Log In">
- </form>
- </main>
- </body>
-</html>