mirror of
https://github.com/YunoHost-Apps/keeweb_ynh.git
synced 2024-09-03 19:26:33 +02:00
17 lines
370 B
HTML
17 lines
370 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<title>KeeWeb</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<script>
|
||
|
window.opener.postMessage(
|
||
|
{ storage: 'gdrive', search: location.search },
|
||
|
window.location.origin
|
||
|
);
|
||
|
window.close();
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|