14 lines
383 B
HTML
14 lines
383 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Login</title>
|
|
</head>
|
|
<body>
|
|
<form method="post" action="{{ url_for('views.login') }}">
|
|
<input type="text" placeholder="Username" name="user" maxlength="20" required/><br />
|
|
<input type="password" placeholder="Password" name="pass" maxlength="1024" required/><br />
|
|
<input type="submit" value="Log in" name="submit"/>
|
|
</form>
|
|
</body>
|
|
</html>
|