This repository has been archived on 2020-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
quay/templates/signin.html

23 lines
765 B
HTML
Raw Normal View History

2013-09-24 22:21:14 +00:00
<!DOCTYPE html>
2013-09-23 16:37:40 +00:00
<html>
<head>
<title>Quay Sign In</title>
2013-09-24 22:21:14 +00:00
<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">
2013-09-23 16:37:40 +00:00
</head>
<body>
2013-09-24 22:21:14 +00:00
<div class="container">
<form method="post" class="form-signin">
<input type="text" class="form-control" placeholder="Username" name="username" value="{{ username }}"autofocus>
2013-09-24 22:21:14 +00:00
<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 %}
2013-09-24 22:21:14 +00:00
</div>
2013-09-23 16:37:40 +00:00
</body>
</html>