<!DOCTYPE html>
<html>
<head>
<title>Quay Sign In</title>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.no-icons.min.css">
<link rel="stylesheet" href="static/css/signin.css">
</head>
<body>
<div class="container">
<form method="post" class="form-signin">
<input type="text" class="form-control" placeholder="Username" name="username" value="{{ username }}"autofocus>
<input type="password" class="form-control" placeholder="Password" name="password">
<button class="btn btn-lg btn-primary btn-block" type="submit">Sign In</button>
</form>
{% if error %}
<div class="alert alert-danger">{{ error }}</div>
{% endif %}
</div>
</body>
</html>