Remove password check

This commit is contained in:
bingus_violet 2024-01-19 18:45:02 +00:00
parent 97fe133c92
commit 7faecc66b9

View file

@ -44,9 +44,6 @@ app.get("/*", (req, res) => {
const file = dirContents[index];
res.write(`<a href="./${file}">${file}</a><br>`)
}
if (passwd) {
res.write(`<br><a href="/dashboard.html?folder=${file}">Dashboard page for this folder</a><br>`)
}
res.write(baseEnd)