Buckler/templates/login.html

18 lines
460 B
HTML
Raw Normal View History

2019-09-14 18:36:23 -04:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>Buckler - Login</title>
</head>
<body>
<h1>Buckler Login</h1>
<form action="/login" method="post" enctype="application/x-www-form-urlencoded">
<label for="username">Username</label>
<input id="username" name="password" type="text">
<label for="password">Password</label>
<input id="password" name="password" type="password">
<input type="submit" value="Login">
</form>
</body>
</html>