FILEUP



LOG | FILES | OVERVIEW


F diff --git a/loggedin.js b/loggedin.js --- a/loggedin.js +++ b/loggedin.js
password_label.innerText = "Password";
var password_input = mk(password_container, 'input');
password_input.type = 'password';
+ password_input.autocomplete = 'off'
+
password_input.style.flex = "1 0 0";
password_input.onchange = (_e) => {
data.password = password_input.value;
focus.pwd.push(fileview.filename);
openfile(fileview.is_directory);
}],
+ ['Open in New Window', () => {
+ var new_pwd = focus.pwd.slice();
+ new_pwd.push(fileview.filename);
+ var new_wnd = make_window(new_pwd);
+ focus_window(new_wnd);
+ openfile(fileview.is_directory);
+ }],
// ['Open in New Window', () => {alert('not implemented')}],
];
F diff --git a/share_frontend.php b/share_frontend.php --- a/share_frontend.php +++ b/share_frontend.php
</head>
</head>
<body>
- <form method="GET" action="<?php echo "/php/share.php"; ?>">
+ <form method="GET" action="<?php echo "/php/share.php"; ?>" autocomplete="off">
<h2>Fileup</h2>
<div class="content">
This file is password protected.