mirror of https://github.com/keeweb/keeweb
47 lines
1.3 KiB
Handlebars
47 lines
1.3 KiB
Handlebars
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>KeeWeb</title>
|
|
<meta charset="utf8" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<style>
|
|
body {
|
|
height: 100vh;
|
|
min-height: 100vh;
|
|
background: #ffffff;
|
|
color: #242424;
|
|
font-family: -apple-system, 'BlinkMacSystemFont', 'Helvetica Neue', 'Helvetica',
|
|
'Roboto', 'Arial', sans-serif;
|
|
font-size: 16px;
|
|
line-height: 1.6;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
}
|
|
@media (prefers-color-scheme: dark) {
|
|
body {
|
|
background-color: #1e1e1e;
|
|
color: #fcfcfc;
|
|
}
|
|
}
|
|
img {
|
|
width: 96px;
|
|
height: 96px;
|
|
}
|
|
h1 {
|
|
padding: 20px;
|
|
font-size: 32px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<img
|
|
src="{{logoSrc}}"
|
|
alt="KeeWeb"
|
|
/>
|
|
<h1>{{res 'appBrowserAuthComplete'}}</h1>
|
|
</body>
|
|
</html>
|