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