Spiegel von
https://github.com/dani-garcia/vaultwarden.git
synchronisiert 2024-11-05 02:28:00 +01:00
32 Zeilen
703 B
HTML
32 Zeilen
703 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
|
||
|
<title>Duo Two-step Login</title>
|
||
|
<style>
|
||
|
html, body {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
background: #efeff4 url('images/loading.svg') 0 0 no-repeat;
|
||
|
}
|
||
|
|
||
|
iframe {
|
||
|
display: block;
|
||
|
width: 100%;
|
||
|
height: 400px;
|
||
|
border: none;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<script src="js/duo.js"></script>
|
||
|
<script src="js/duo-connector.js"></script>
|
||
|
</body>
|
||
|
</html>
|