mirror of
https://github.com/bitwarden/browser
synced 2025-12-22 19:23:52 +00:00
32 lines
629 B
HTML
32 lines
629 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Two-step Login</title>
|
|
<meta charset="utf-8" />
|
|
<style>
|
|
html, body {
|
|
height: 90%;
|
|
padding: 0;
|
|
}
|
|
|
|
.frameWrapper {
|
|
background: url('../popup/images/loading.svg') 0 0 no-repeat;
|
|
width: 100%;
|
|
height: 100%;
|
|
margin-bottom: -10px;
|
|
}
|
|
|
|
.frameWrapper iframe {
|
|
width: 100%;
|
|
height: 100%;
|
|
border: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="frameWrapper">
|
|
<iframe id="duo_iframe"></iframe>
|
|
</div>
|
|
</body>
|
|
</html>
|