Add the logo to the signin page.
This commit is contained in:
parent
65b0b85ffb
commit
ba5824a4a8
2 changed files with 7 additions and 1 deletions
|
@ -4,6 +4,10 @@ body {
|
|||
background-color: #eee;
|
||||
}
|
||||
|
||||
.signin-container {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.form-signin {
|
||||
max-width: 330px;
|
||||
padding: 15px;
|
||||
|
|
|
@ -19,7 +19,9 @@ mixpanel.init(isProd ? "50ff2b2569faa3a51c8f5724922ffb7e" : "38014a0f27e7bdc3ff8
|
|||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="container signin-container">
|
||||
<img src="/static/img/quay-logo.png">
|
||||
|
||||
<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">
|
||||
|
|
Reference in a new issue