24 lines
817 B
HTML
24 lines
817 B
HTML
<html>
|
|
<head>
|
|
<title>Groclist - login page</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" rel="stylesheet" media="screen">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h2>Please login</h2>
|
|
<br>
|
|
<form action="" method="post">
|
|
<input type="text" placeholder="Username" name="username" value="{{
|
|
request.form.username }}">
|
|
<input type="password" placeholder="Password" name="password" value="{{
|
|
request.form.password }}">
|
|
<input class="btn btn-default" type="submit" value="Login">
|
|
</form>
|
|
{% if error %}
|
|
<p class="error"><strong>Error:</strong> {{ error }}
|
|
{% endif %}
|
|
</div>
|
|
</body>
|
|
</html>
|